首页 > 编程 > JavaScript > 正文

Javascript中封装window.open解决不兼容问题

2019-11-20 14:05:19
字体:
来源:转载
供稿:网友

对window.open进行封装, 使其更好用, 且更兼容, 很多人说window.open不兼容,其实不是, 因为不能直接执行, 必须通过用户手动触发才行;看代码:

代码如下

var openWindow = function(url, options) {var str = "";if (options) {options.height = options.height || 420;options.width = options.width || 550;options.left = options.left || ((screen.width - options.width) / 2); //默认为居中options.top = options.top || ((screen.height - options.height) / 2); //默认为居中for (var i in options) {str += ',' + i + '=' + options[i];}str = str.substr(1);};window.open(url, 'connect_window_'+ (+new Date), str);//参数1为url,参数2为了能可以重复弹出str = null;};//demo 1:新窗口打开我的led投光灯电源网站document.body.onclick = function(){openWindow("http://www.daermay.com/ ?rel=xuexb");}//demo 2:固定宽 并居中document.body.onclick = function(){openWindow("//www.VeVB.COm/ ?rel=xuexb",{width:888});}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表