您可以尝试如下 *** 作:
$.ajax({ type: "POST", url: "your url goes here", data: "data to be sent", success: function(response, status, xhr){ var ct = xhr.getResponseHeader("content-type") || ""; if (ct.indexOf('html') > -1) { //do something } if (ct.indexOf('json') > -1) { // handle json here } }});
基本上也使用indexOf,但似乎更可靠。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)