jQuery('option:selected', this).each(function () {
                alert(this.value);
                jQuery.ajax({
                    url: "/Ajax/AjaxSite.ashx?rnd=" + this.value,
                    type: "get",
                    success: function (result) {
                        if (result.indexOf("{") == -1) {
                            jQuery("#load").html(result);
                            return;
                        }
这个是js里调用那个方法传参的,我穿过去的参数为啥是乱码?求高手解答。。