使用jquery-1.9.1进行ajax提交 Error 报错:
parsererror
Unexpected end of input
根据这里的解释:
“parsererror”, SyntaxError: {message: “Unexpected end of input”}
jQuery 1.8.3 did report a success, 1.9.1 reports a failure.
根据这里的解释,解决办法是:
var json = $.parseJSON(jsonString || “null”);
或者
dataType: “text”