首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

javascript怎么实现真正的模态窗口

2013-06-25 
javascript如何实现真正的模态窗口?网上普遍都是说三层锁屏,但这不是真正的模态窗口。真正的模态窗口不但能

javascript如何实现真正的模态窗口?
网上普遍都是说三层锁屏,但这不是真正的模态窗口。

真正的模态窗口不但能禁止背景输入,而且还要能中断代码执行,直到点击确认或取消后,代码才继续执行

请问这个在javascript中应该怎么实现呢?求例子
[解决办法]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>基于JQuery的JS遮罩层效果</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
    <script type="text/javascript">
    function showDiv() {
        document.body.style.overflow = 'hidden';
        var docHeight = Math.max(document.documentElement.scrollHeight,
        document.documentElement.clientHeight);
        var docWidth = Math.max(document.documentElement.scrollWidth,
        document.documentElement.clientWidth);
        var _div = document.createElement('div');
        _div.className = 'divClass';
        _div.setAttribute('id', 'divId');
        document.body.appendChild(_div);
        document.getElementById('divId').style.width = docWidth + 'px';
        document.getElementById('divId').style.height = docHeight + 'px';
        var _divAlert = document.createElement('div');
        _divAlert.className = 'divalert';
        _divAlert.id = 'divalert';
        document.body.appendChild(_divAlert);
        document.getElementById('divalert').style.left = (document.documentElement.clientWidth - 200)/2 + 'px';
        document.getElementById('divalert').style.top = (document.documentElement.clientHeight - 100)/2 + 'px';
        var _divContent = document.createElement('div');
        _divContent.id = 'divcontent';
        _divAlert.appendChild(_divContent);
        var _divbtn = document.createElement('div');
        _divbtn.id = 'divbtn';
        var _btn = document.createElement('input');


        _btn.type = 'button';
        _btn.value = '确定';
        _btn.id = 'btn';
        _divbtn.appendChild(_btn);
        _divAlert.appendChild(_divbtn);
        document.getElementById('btn').onclick = function() {
            document.getElementById('divId').style.display = 'none';
            document.getElementById('divalert').style.display = 'none';
            document.body.style.overflow = 'auto';
        }
    }
    function resizeDiv() {
        var docHeight = Math.max(document.documentElement.scrollHeight,
        document.documentElement.clientHeight);
        var docWidth = Math.max(document.documentElement.scrollWidth,
        document.documentElement.clientWidth);
        document.getElementById('divId').style.width = document.documentElement.clientWidth + 'px';
        document.getElementById('divId').style.height = document.documentElement.clientHeight + 'px';
    }
    window.onload = function() {
       showDiv(); 
    }
    window.onresize = resizeDiv;
    </script>
    <style type="text/css">
    body { margin:0; padding:0; }
    .divClass { position:absolute; left:0; top:0; background-color:#ccc; z-index:0; }
    .divalert { position:absolute; z-index:2000; width:200px; height:100px; border:1px solid #666; background-color:#fff; }
    #divcontent { height:60px; }
    #divbtn { height:40px; background-color:#ddd; text-align:center; }
    #btn { border:1px solid #000; margin-top:10px; }
    </style>
    </head>
    <body>
    <div style='height:1000px;'>fsfs</div>
    </body>
    </html>


[解决办法]
模拟的都无法挂起js代码执行,都是基于回调的机制。

showModalDialog方法可以,但是低版本的firefox和有些浏览器不支持


[解决办法]
引用:
模拟的都无法挂起js代码执行,都是基于回调的机制。

showModalDialog方法可以,但是低版本的firefox和有些浏览器不支持


+1
[解决办法]
靠JS模拟是实现不了的..只有IE以及部分浏览器自带的showModalDialog方法可以..

热点排行