慕數(shù)據(jù)5775487
2016-12-22 00:23:56
<html>
<head>
<title>取消<a>標(biāo)簽的默認(rèn)動(dòng)作</title>
</head>
<body>
<a?id="demo"?>點(diǎn)擊這里試試</a>
<script?type="text/javascript">
document.getElementById("demo").onclick=function(e){
var?eve?=?e?||?window.event;
try{??//?使用?try...catch?語句避免瀏覽器出現(xiàn)錯(cuò)誤提示
eve.preventDefault();??//?非?IE?瀏覽器
}catch(e){
eve.returnValue?=?false;??//?IE8.0?及其以下版本
}
}
</script>
</body>
</html>
添加回答
舉報(bào)
0/150
提交
取消