當我調整我的窗口彈出窗口停留在中心位置。它根據窗口大小顯示調整。我的代碼有什麼問題窗口大小調整問題
.Popup
{
display: none;
height: 400px;
width: 400px;
position: fixed;
background-color: white;
z-index: 9999;
}
</style>
<script type="text/javascript">
onload = function() {
var height = "innerHeight" in window
? window.innerHeight
: document.documentElement.offsetHeight;
$('#popup').css({
'margin-top': (height/2) - (200),
'margin-left': (document.body.offsetWidth/2) - (200)
});
document.getElementById("popup").style.display = "inline";
}
</script>