1、提交页面,提交按钮点击后,添加这个样式属性(style="pointer-events"),来防止重复提交
2、让链接不能点击
3、让鼠标点击穿透上方的 div
楼上说的是对的,或者把代码放<head>里,像下边那样。希望可以帮到你。<html>
<body>
<script>
function testDemo(){
setTimeout("alert('ok')",3000)
}
</script>
<table>
<tr>
<td><a onmouseout="testDemo()" href="http://www.baidu.com" target="_blank">链接</a></td>
</tr>
</table>
</body>
</html>