我有这个js脚本:
function showAd() {
var ajax_url = '<?=URL?>components/ajax/show_advert.php';
$.ajax({
type: "POST",
cache: false,
dataType: "html",
url: ajax_url,
success: function(data) {
alert(data);
}
});
}
此ajax调用适用于除Chrome以外的所有浏览器。它没有给我任何错误,只是说:
POST http://localhost/stavcolor/components/ajax/show_advert.php jquery.js:5
发送jquery.js:5 b.extend.ajax jquery.js:5 showAd default.js:259 的onclick
我真的在这里苦苦挣扎,因为它适用于Firefox和Opera甚至IE就好了。
编辑:我通过编辑我提出请求的php文件解决了这个问题。