分享HTML页面点击按钮关闭页面的几种方式

文章介绍了HTML页面中通过按钮关闭页面的几种方法,包括直接关闭、提示后关闭以及关闭并跳转到其他页面。这些方法利用JavaScript的window.close()和onbeforeunload事件来实现,提供了详细的示例代码供参考。
摘要由CSDN通过智能技术生成

这篇文章给大家分享HTML页面点击按钮关闭页面的几种方式,实现思路非常简单,有不带任何方式的关闭窗口,提示之后关闭页面,点击关闭本页面并跳转到其他页面等等,每种方式结合实例代码给大家介绍的非常详细,需要的朋友参考下吧

HTML页面点击按钮关闭页面的几种方式

一、不带任何方式的关闭窗口

1

<input type="button" name="close" value="关闭" onclick="window.close();" />

二、提示之后关闭页面

1

2

3

4

5

6

7

8

9

10

11

12

<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()" />

三、点击关闭本页面并跳转到其他页面

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

<!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="">点击跳转到微点阅读</a>    

<script>

    function myFunction() {

        return "我在这写点东西...";

    }

</script>

</body>

</html>

四、将 三 中的方法放到js中

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

<!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="">点击调转到微点阅读</a>

<script>

    window.onbeforeunload = function(event) {

        event.returnValue = "我在这写点东西...";

    };

</script>

</body>

</html>

到此这篇关于HTML页面点击按钮关闭页面的多种方式的文章就介绍到这了,希望可以帮到你。

来源:微点阅读   

jQuery 中,你可以使用 `window.open` 功能打开新的浏览器窗口,同时为了实现点击其他按钮关闭之前的页面,可以采用以下几种方法: 1. **JavaScript全局变量**: - 使用一个全局变量来跟踪当前打开的窗口引用,当需要关闭时,通过这个变量找到对应的窗口并调用 `close()` 方法。 ```javascript var activeWindow; function openPage() { activeWindow = window.open('new_page.html'); } function closeActiveWindow() { if (activeWindow) { activeWindow.close(); } } // 然后在按钮点击事件中使用这两个函数 $('#button1').click(openPage); $('#button2').click(closeActiveWindow); ``` 2. **事件监听**: - 可以给所有可能关闭按钮添加一个通用的事件处理器,检测到目标窗口是否是你想要关闭的那个。 ```javascript function setActiveWindow(window) { if (typeof activeWindow !== 'undefined') { activeWindow.focus(); // 保持焦点 } activeWindow = window; } function closeModal() { setActiveWindow(window.parent); } $('#button1').click(function() { setActiveWindow(window.open('new_page.html')); }); $('#button2').click(closeModal); ``` 3. **HTML5 History API** (仅适用于现代浏览器): - 如果允许的话,可以利用 HTML5 的 history API 来替代传统的方式,通过 pushState 和 popstate 监听历史状态变化来控制页面。 ```javascript function openPage() { window.history.pushState(null, null, '#new-page'); } function closeCurrentPage() { window.history.back(); } // 同样地,绑定按钮事件 $('#button1').click(openPage); $('#button2').click(closeCurrentPage); ``` 请注意,对于旧版浏览器,可能需要处理一些兼容性问题,比如上述的 `history` API。在实际应用中,请选择最适合你项目需求的方式来实现。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>