码迷,mamicode.com
首页 > Windows程序 > 详细

window.open完美代替window.showModalDialog

时间:2015-05-19 18:29:15      阅读:431      评论:0      收藏:0      [点我收藏+]

标签:

    var url = "http//:www.baidu.com/"
    var name = "百度";
    var iWidth = 1100;//弹窗宽度
    var iHeight = 700; //弹窗高度
    var iTop = (window.screen.availHeight - 30 - iHeight) / 2;
    var iLeft = (window.screen.availWidth - 10 - iWidth) / 2;
    window.open(url, name, ‘height=‘ + iHeight + ‘,innerHeight=‘ + iHeight + ‘,width=‘ + iWidth + ‘,innerWidth=‘ + iWidth + ‘,
                top=‘ + iTop + ‘,left=‘+ iLeft + ‘,toolbar=no,menubar=no,scrollbars=yes,resizeable=no,location=no,status=no‘);

 

window.open完美代替window.showModalDialog

标签:

原文地址:http://www.cnblogs.com/bloghxr/p/4514938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!