我在Firefox中的ajax加载有问题吗?我不断收到此消息“在return语句后无法访问代码”,我一直在寻找它的内容,但无法真正深入了解它。它在edge,chrome,safari等环境中都能很好地工作。它只是一个按钮,单击该按钮即可加载php页面并显示在div中。该代码在此处带有添加的警报。在Firefox中时,它有时起作用还是需要永久加载或根本不加载?还有其他人遇到过这个问题吗?任何帮助表示赞赏。
$(document).ready(function(){
$(".mainstuff button").click(function(){
$('#loader').show();
status = $(this).attr("data-name");
var new_url = "demo_text.php?job_id="+status;
//alert(status);
$("#div1").load(new_url);
});
});
$(document).ajaxStop(function() {
alert("LOADED");
$('#loader').hide();
return true;
});
答案 0 :(得分:0)
听起来很奇怪,我通过取出导致问题的Google Analytics(分析)代码解决了该问题。奇怪!