当我尝试使用 stringify 在字符串中发布 html 时,为什么会发生此 ajax 错误。
看起来 stringify 会自动转义字符。
我必须逃跑吗?谢谢
var s;
//s = "my test test"; //if I post this it works
s = "my test test<br />"; //if I post this it break when I add the html
var a = { "myText": JSON.stringify(s) };
$.ajax({
type: "POST",
url: "test.aspx",
data: a,
success: function (data) {
//pass
},
error: function () {
alert("error");
}
});
然后在页面加载时,我试图读取发布的数据
HttpContext.Current.Request.Form("myText")