javascript如何關閉當前視窗

antzone發表於2017-03-07

很多網頁在底部都有一個連結形式的按鈕,點選之後就能夠關閉網頁,程式碼非常簡單,直接上程式碼。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<meta name="author" content="http://www.softwhy.com/" />
<head>
<title>點選關閉頁面-螞蟻部落</title>
<script language="javascript">
function closePage(){
  if(confirm("您確定要關閉本頁嗎?")){
    window.opener=null;
    window.open('','_self');
    window.close();
  }
}
window.onload=function(){
  var bt=document.getElementById("bt");
  bt.onclick=closePage;
}
</script>
</head> 
<body> 
<input id="bt" type="button" value="關閉頁面"/>
</body>
</html>

相關文章