WebMethod用div返回Json Data

时间:2017-06-12 18:08:39

标签: json ajax webforms

我在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元素。

0 个答案:

没有答案