1、后端返回:
return null;
2、ajax需要判断:
if(null != jsonStr && "" != jsonStr){
具体代码:
$.ajax( { type: "POST", data: { name: name, code: code }, dataType: "json", url: "info", success: function(jsonStr) { if(null != jsonStr && "" != jsonStr){ $("#curator_info").html("ok"); } else { $("#curator_info").html("no"); } } } );
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容