如何运用javascript在关闭浏览器时弹出“确认“框
4个回答
展开全部
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
return confirm("是否关闭窗口");
}
</script>
</body>
</html>
这个是多个浏览器都支持的版本
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
if(window.event)
window.event.returnValue = "关闭窗口";
return false;
}
</script>
</body>
</html>
这个版本呢在Firefox下面就没有自定义的提示信息了。。。
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
return confirm("是否关闭窗口");
}
</script>
</body>
</html>
这个是多个浏览器都支持的版本
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
if(window.event)
window.event.returnValue = "关闭窗口";
return false;
}
</script>
</body>
</html>
这个版本呢在Firefox下面就没有自定义的提示信息了。。。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
return confirm("是否关闭窗口");
}
</script>
</body>
</html>
这个是多个浏览器都支持的版本
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
if(window.event)
window.event.returnValue = "关闭窗口";
return false;
}
</script>
</body>
</html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
return confirm("是否关闭窗口");
}
</script>
</body>
</html>
这个是多个浏览器都支持的版本
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.onbeforeunload = function(e){
if(window.event)
window.event.returnValue = "关闭窗口";
return false;
}
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script language="javascript">
window.onbeforeunload= function(){
window.event.returnValue = "感谢您的使用,再见!"
if (window.event.reason == false){
window.event.cancelBubble = true;
}
};
</script>
window.onbeforeunload= function(){
window.event.returnValue = "感谢您的使用,再见!"
if (window.event.reason == false){
window.event.cancelBubble = true;
}
};
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<HTML><body>
<script type = "text/javascript" language = "javascript">
function cf1()
{
if(confirm("点确定关闭本窗口!")) {
window.close();
}
}
</script>
<a href="#" onclick="cf1();">Click Me to Test!</A>
</BODY>
</HTML>
<script type = "text/javascript" language = "javascript">
function cf1()
{
if(confirm("点确定关闭本窗口!")) {
window.close();
}
}
</script>
<a href="#" onclick="cf1();">Click Me to Test!</A>
</BODY>
</HTML>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询