我在webform ajax中遇到json解析问题。
我的ajax方法:
$(document).ready(function () {
$.ajax({
type: "POST",
url: "VINSearch.aspx/VerifyCaptcha",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
},
error: function (msg) {
alert('Error calling AddBook');
}
});
});
我的服务器方法:
[WebMethod(EnableSession = true)]
public static string VerifyCaptcha()
{
return "testus";
}
在ajax结果中我有:
"{"d":"\"\\test\""}<div class="timestamp">Processing time: 0,00s</div>"
我不明白为什么在json结果之后我有div元素。