Jquery Ajax Post发送html内容失败

时间:2014-08-05 18:10:53

标签: jquery ajax json

$("#btnSend").click(function(){
    $.ajax({
       url         : "/ControllerName/MethodName",
       type        : "POST",
       dataType    : "json",
       contentType : "application/html",
       data        : '{ divhtml:"<p>World</p>" }'

    });
});

将null传递给action方法。试图将内容类型更改为json。开始给出错误。什么是正确的方法?

1 个答案:

答案 0 :(得分:1)

更改数据:行。它应该是。没有''。

$("#btnSend").click(function(){
    $.ajax({
       url         : "/ControllerName/MethodName",
       type        : "POST",
       dataType    : "json",
       contentType : "application/json",
       data        : { 'divhtml':"<p>World</p>" }

    });
});