onclick打开窗口和特定大小

我有这样的链接:

<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,')

我希望新的打开窗口以特定大小打开。如何指定高度和宽度?

回答:

<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11"

onclick="window.open(this.href,'targetWindow',

`toolbar=no,

location=no,

status=no,

menubar=no,

scrollbars=yes,

resizable=yes,

width=SomeSize,

height=SomeSize`);

return false;">Popup link</a>

其中width和height是没有单位的像素(width = 400而不是width = 400px)。

在大多数浏览器中,如果没有设置换行符就无法编写它,那么一旦设置了变量,所有内容都在一行中:

<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=SomeSize,height=SomeSize'); return false;">Popup link</a>

以上是 onclick打开窗口和特定大小 的全部内容, 来源链接: utcz.com/qa/398248.html

回到顶部