json参数不起作用

时间:2013-03-14 13:57:13

标签: jquery json post

下面是我的.post函数,如果我删除“Json”参数,我收到警报消息但是如果放入“Json”参数,我没有收到警报消息。任何建议。

此代码无效

function subSmsForm() {
        $.post('?action=smsregistration-save', $('#smsform').serialize(),
            function(data) {
                alert("BULB");

            }, "json");
    }

此代码工作正常。

function subSmsForm() {
        $.post('?action=smsregistration-save', $('#smsform').serialize(),
            function(data) {
                alert("BULB");

            });
    }

操作页面返回

echo json_encode(array('returnValue'=>'Account created successfully. Verify the code you got on your mobile below.'));

0 个答案:

没有答案