微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 启动弹出窗口后,如何将其移动到页面中心?

popup = window.open(thelink,'Facebook Share','resizable=1,status=0,location=0,width=500,height=300');

我想将这个窗口一直移动到中心(垂直和水平)

解决方法

Owalla,

我直接从谷歌搜索获得了这样的简单javascript,我们可以用更简单的方式在jquery中完成它但是尝试像这样

var myWindow;

function openCenteredWindow(url) {
    var width = 400;
    var height = 300;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url,"subWind",windowFeatures);
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐