gpt4 book ai didi

javascript - Window.open 调整到可用的宽度和高度

转载 作者:数据小太阳 更新时间:2023-10-29 05:58:36 24 4
gpt4 key购买 nike

我已经做了一些搜索,但我看不出这是否可行。我想使用 window.open() 方法打开指向窗口可用宽度和高度的链接。类似于下面的代码。

var h = $(window).height(); 
var w = $(window).width();

$('#window-opener').live('click',function (e) {
window.open(this.href, 'Resource', 'toolbar=no ,location=0, status=no, titlebar=no, menubar=no,
width='+w',
height='+h);
e.preventDefault();
});

这可能吗?如果没有,任何人都可以推荐一种做类似事情的方法。

最佳答案

您的代码是正确的,只是在宽度连接后缺少一个 ':

width='+w', 

必须是

width='+ w +', 

我已经试过了,也许我不明白你到底想做什么:

var h = screen.height;
var w = screen.width;

$('#window-opener').live('click',function (e) {
window.open(this.href, 'Resource', 'toolbar=no ,location=0,
status=no,titlebar=no,menubar=no,width='+w +',height=' +h);
e.preventDefault();
});​

fiddle :http://jsfiddle.net/UC8Ww/

关于javascript - Window.open 调整到可用的宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13530641/

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