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>
是不是a的背景颜色不能完全填充?a属性再加上:{
display:block
width:80px
height:25px
}
这样的话颜色应该可以完全填充了,但是这种导航一般都不是用table做,table不够灵活且编码麻烦,最佳方法是使用ul li的方式,如:
<ul>
<li>导航一</li>
<li>导航二</li>
<li>导航三</li>
<li>导航四</li>
</ul>
css:
ul{
list-style-type:none
}
ul li{
float:left
width:80px
height:25px
line-height:25px
}
ul li a{
text-decoration:none
........
}
ul li a:hover{
......
}