gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-10-31 22:34:36 24 4
gpt4 key购买 nike

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

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

最佳答案

奥瓦拉,

我直接从谷歌搜索中得到了类似这个普通 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);
}

关于javascript - 启动弹出窗口后,如何将其移动到页面中央?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6561066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com