在编写javascirpt程序过程中,用$.post方法发送数据,若数据中字符含有'<‘,将导致$.post无法成功执行。
复制代码 代码如下:
var jsonstr='{"value":"abcd<efg"}';
$.post(
url,
{ "jsonstr": jsonstr },
function (data, status) {
});
需要将其转义后再使用,使用下面的transferredChars函数转义后,再传递数据$.post即能执行。
此函数使用将'<'和‘>'分别替换为'<'和‘>'。
复制代码 代码如下:
transferredChars=function (htmlChars) {
var tcs = htmlChars.replace(/</g, "<");
tcs = tcs.replace(/>/g, ">");
return tcs;
}
复制代码 代码如下:
var jsonstr='{"value":"abcd<efg"}';
jsonstr=transferredChars(jsonstr);
$.post(
url,
{ "jsonstr": jsonstr },
function (data, status) {
});
使用的jquery版本为1.7.1.min
复制代码 代码如下:
var jsonstr='{"value":"abcd<efg"}';
$.post(
url,
{ "jsonstr": jsonstr },
function (data, status) {
});
需要将其转义后再使用,使用下面的transferredChars函数转义后,再传递数据$.post即能执行。
此函数使用将'<'和‘>'分别替换为'<'和‘>'。
复制代码 代码如下:
transferredChars=function (htmlChars) {
var tcs = htmlChars.replace(/</g, "<");
tcs = tcs.replace(/>/g, ">");
return tcs;
}
复制代码 代码如下:
var jsonstr='{"value":"abcd<efg"}';
jsonstr=transferredChars(jsonstr);
$.post(
url,
{ "jsonstr": jsonstr },
function (data, status) {
});
使用的jquery版本为1.7.1.min
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“javasciprt下jquery函数$.post执行无响应的解决方法”评论...