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")