在javascript中显示消息框

时间:2013-11-26 12:46:27

标签: javascript

我正在使用以下

在JavaScript中创建一个消息框
<div id="uLightBox" style="top: 4906px; left: 236px;">
    <div id="lbHeader" class="top"><header>Alert</header></div>
    <div id="lbContent">User cannot be deleted.</div>
    <div id="lbFooter" class="bottom">
        <input type="button" class="flat floatRight" value="OK" id="OK">
    </div>
</div>

但是此消息框显示在页面中间。而我的页面显示超过一百条记录。如果我的消息框显示在页面中间,我必须每次都向下滚动。请建议......

谢谢,

凯丝

1 个答案:

答案 0 :(得分:0)

使用类似这样的东西:style =“position:fixed; left:50%; top:50%; margin-left:-200px; margin-top:-100px;”。

其中200和100实际上是宽度/ 2和高度/ 2。