ajax特殊字符的处理
ajax特殊字符的处理当你用ajax传递值到服务器端,如果值中包含特殊字符串如+,&等,在服务器端获取的结果可能就会出现差异,因为这些字符有其它用途,如“+”表示连接符,在转义后你获取到的就是空格。
如果变量中确实需要包含这些特殊字符,请用 encodeURIComponen() 函数过滤,它会对这些字符编码,服务器端是会被自动解码的,不需要处理。
例如
$.ajax({
url :url,
async :false,
type :"post",
dataType :"json",
data : { "parametersStr":encodeURIComponent(queryxml),"lotime":encodeURIComponent(textString)},
success: function(C) {
}
})