xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>编程狮(w3cschool.cn)</title>
<script>
function del() {
var msg = "您真的确定要删除吗?\n\n请确认!";
if (confirm(msg)==true){
return true;
}else{
return false;
}
}
</script>
</head>
<body>
<a href="" onclick="javascript:return del();">删除</a>
</body>
</html>