龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > Javascript编程 >

离开当前页面前使用js判断条件提示是否要离开页面

时间:2014-05-12 02:03来源:网络整理 作者:网络 点击:
分享到:
这篇文章主要介绍了离开当前页面前如何使用js判断条件提示是否要离开页面,需要的朋友可以参考下
代码如下:

<!doctype html>
<html lang="cn">
<head>
<meta charset="UTF-8">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>js离开当前页面前判断条件提示是否要离开页面</title>
<script type="text/javascript">
window.onbeforeunload = function()
{
var unloads = document.getElementById("unloads").value;
if(unloads == null || unloads == ""){
return "您确定要退出页面吗?";
}
}
</script>
</head>
<body>
<input type="text" id="unloads" name="unloads" value="" />
</body>
</html>
精彩图集

赞助商链接