当前位置:主页 > 网页前端 > JavaScript代码 >

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

时间:2021-04-04 10:16:24 | 栏目:JavaScript代码 | 点击:

复制代码 代码如下:

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

您可能感兴趣的文章:

相关文章