我想创建一个弹出窗口,并且无论浏览器或屏幕大小如何,我都希望它始终位于中间。
所以为此,我使用的是 window.innerWidth,但我不知道为什么这段代码不起作用。
function show_update_profile()
{
document.getElementById('black_fade').style.display='block';
alert(window.innerWidth);
document.getElementById('div_register').style.display='block';
document.getElementById.('div_register').style.left= ((window.innerWidth)-500)/20;
alert(window.innerWidth);
}
线路document.getElementById.('div_register').style.left= ((window.innerWidth)-500)/20;
有问题。