Posted in HTML / CSS onDecember 24, 2022
HTML页面点击按钮关闭页面的几种方式
一、不带任何方式的关闭窗口
<input type="button" name="close" value="关闭" onclick="window.close();" />
二、提示之后关闭页面
<script>
function custom_close(){
if(confirm("您确定要关闭本页吗?")){
window.opener=null;
window.open('','_self');
window.close();
}
else{
}
}
</script>
<input id="btnClose" type="button" value="关闭本页" onClick="custom_close()" />
三、点击关闭本页面并跳转到其他页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>html中</title>
</head>
<body onbeforeunload="return myFunction()">
<p>该实例演示了如何向 body 元素添加 "onbeforeunload" 事件。</p>
<p>关闭当前窗口,点击以下链接触发 onbeforeunload 事件。</p>
<a href="http://www.3water.com">点击跳转到三水点靠木</a>
<script>
function myFunction() {
return "我在这写点东西...";
}
</script>
</body>
</html>
四、将 三 中的方法放到js中
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript 中</title>
</head>
<body>
<p>该实例演示了如何使用 HTML DOM 向 body 元素添加 "onbeforeunload" 事件。</p>
<p>关闭当前窗口,按下 F5 或点击以下链接触发 onbeforeunload 事件。</p>
<a href="http://www.3water.com">点击调转到三水点靠木</a>
<script>
window.onbeforeunload = function(event) {
event.returnValue = "我在这写点东西...";
};
</script>
</body>
</html>
到此这篇关于HTML页面点击按钮关闭页面的多种方式的文章就介绍到这了,更多相关html点击按钮关闭页面内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章,希望大家以后多多支持三水点靠木!
HTML页面点击按钮关闭页面的多种方式
- Author -
zhu虎康声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@