1、AJAX为DIV赋值 用jQuery最方便了,直接$("#div的id").html("这里是你想赋的值"); 2、AJAX向ASHX文件传中文乱码 $.ajax({ type: "get",url: "DelaData.ashx?uname=" + escape(varName),//编码 data: null,//或者data:{"uname":escape(varName)},beforeSend: function() { $("#tip").text("正在对贴吧名称进行合法性校验,请稍候..."); },success: function(result) { if (result == "1") { $("#tip").text("");原文链接:https://www.f2er.com/ajax/164813.html} else { $("#tip").text("该贴吧名称已经被注册,请重试!");
return false }
} });
ashx文件:
string uname = HttpUtility.UrlDecode(context.Request.QueryString["uname"]); //解码