以下javascript在chrome中工作正常但在firefox或IE中没有, 在我的例子中,我正在jQuery ajax中执行某些操作,并且ajax执行的文件会将此代码回显给浏览器。
<script>
var con=confirm("Well Done, You have made a new sale. Click OK to proceed");
if(con==true) {
window.location.href="sales_supervisor.php";
}
else
{
return false;
}
</script>
它在chrome中运行良好,但在firefox和IE中无效。
答案 0 :(得分:1)
删除else条件,因为return只能在函数中使用...