JS简单小应用之关于确认是否关闭框和页面跳转的写法
程序员文章站
2022-09-04 18:58:17
关于确认是否关闭框和页面跳转的写法
关于确认是否关闭框和页面跳转的写法
<!doctype html> <html lang="en"> <script> window.alert('haha'); window.confirm('你确定要关闭吗?'); //确认是否关闭框 console.log(window.navigator.cookieenabled); //true window.location.href = 'https://www.baidu.com/'; //页面跳转 </script> <head> <meta charset="utf-8"> </head> <body> </body> </html>
确认关闭框: