單擊網頁中的按鈕,彈出對話框

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
<style>
* {margin:0; padding:0; border:0}
#div1 {width:50px; height:auto; border:solid 1px black; margin:100px auto; cursor:pointer;}
#div2 {position:fixed; top:0; left:0; z-index:100; background:#000; opacity:0.5; display:none;}
#div3 {width:200px; height:100px; border:solid 1px #0000CC;}
</style>

<script>
window.onload = function(){
	document.getElementById("div1").onclick = function(){
		//獲取當前瀏覽器窗口寬度和高度
		var ww = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
		var wh = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		
		//顯示背景層,設置寬度和高度
		var node2 = document.getElementById("div2");
		node2.style.display = "block";
		node2.style.width = ww + "px";
		node2.style.height = wh + "px";
		
		//設置對話框位置
		var node3 = document.getElementById("div3");
		node3.style.marginLeft = (ww - 200) / 2 + "px";
		node3.style.marginTop = (wh - 100) / 2 + "px";
	};
	
	document.getElementById("div2").addEventListener("click", function(e){
		e.currentTarget.style.display = "none";
	}, false);
}
</script>
</head>

<body>
<div id="div1">button</div>
<div id="div2">
  <div id="div3">
  </div>
</div>
</body>
</html>

發佈了37 篇原創文章 · 獲贊 24 · 訪問量 13萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章