删除前弹出确定对话框进行确定取消判断 js代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>确认是否删除</title> 
<script type="text/javascript"> 
function confirmd() {  
            var msg = "确定删除该条数据?";  
            if (confirm(msg)==true){  
                return true;  
            }else{  
                return false;  
            }  
        }  
</script> 
</head> 
<body> 
<a href="http://www.baidu.com" onclick="return confirmd()">删除</a> 
</body> 

</html>

原文地址:https://www.cnblogs.com/huyanlon/p/6867582.html