<script>
function confirmDel(evt)
{var con =false;
con=confirm('Do you really want to remove this purchase?.');
if(con)
{
return true;
}else
{
event.preventDefault();
}
}
</script>
我的 html
<a title="View Log" onclick="return confirmDel(this);" href="index.php?mod=tech_support">delete</a>
上面的代码在 chrome 浏览器中运行良好,但在 Mozilla 中失败。但是当我使用return false
而不是event.preventDefault();
它时,两者都可以正常工作。谁能解释为什么会这样