<!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>

浙公网安备 33010602011771号