你好,
我创建了一个高度和宽度为 500px 的 div 的小弹出窗口。当我直接显示它时,它看起来不错。但是当我默认设置 display:none 并在单击按钮时使其可见时,弹出窗口显示没有高度和宽度……谁能告诉我原因……
<!DOCTYPE HTML>
<html>
<head>
<style>
div{
width:500px;
height:500px;
border:1px solid black;
background:#988858;
border-radius:14px;
box-shadow:5px 5px 10px #666633;
display:none;
}
</style>
</head>
<body>
<button class="button">Click</button>
<div id="Popup">
<a href="#" id="Close" onClick="closePopup()">close</a>
</div>
</body>
<script>
document.getElementsByClassName('button')[0].addEventListener('click',showPopup,false);
function showPopup(){
//document.getElementById('Popup').style.width=500+'px';
//document.getElementById('Popup').style.height=500+'px';
document.getElementById('Popup').style.display='inline';
}
function closePopup(){
document.getElementById('Popup').style.display='none';
}
</script>
</html>