<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>

<body>
<a href="a.html" id="haha">删除</a>
</body>
</html>
<script>
window.onload=function(){
var ancound = document.getElementById('haha')
ancound.onclick=function(){
if(confirm('这是真的吗?')==false){
return false
}
}

 

 

confirm(),括号中填写内容,当用户点击确定时候,A标签内容提交,如果为假,则跳出链接


}
</script>

posted on 2015-06-18 14:39  红唇的大白鲨  阅读(133)  评论(0)    收藏  举报