也许我的问题很简单,但我是 HTML 和 JavaScript 的新手。
我想学习window.close()和window.stop(),
所以我在一个简单的 HTML 页面中尝试了它。但是有一个问题,我在标签中使用我的函数。并且window.stop()不会停止操作。如果确认对话框不正确,我想停止重定向。我该如何解决这个问题?
文件:
<html>
<head>
<title> My page </title>
<script src="my_javascript_file.js"></script>
</head>
<body>
<a href = "http://www.google.com" onclick="whereAreYouGoing()">Go</a>
</body>
</html>
my_javascript_file.js:
function whereAreYouGoing(){
var exit = confirm("Are You Want to Sure to Leave?");
if(exit){
window.close();
}
else
window.stop();
}