如何让我的弹出窗口集中注意力?

时间:2014-09-09 19:50:20

标签: javascript html popup

我创建了几个页面,其内容将显示在弹出窗口中。 我有一个页面,我定义了3个链接:

<a href = "page1.htm", onClick="window.open(this.href,'content','scrollbars=yes, resizable=yes, left=70,top=20, width=900, height=900,innerWidth=900, innerHeight=900'); return false;">Page1</a><br />
<a href = "page2.htm", onclick="window.open(this.href,'content','scrollbars=yes, resizable=yes, left=70, top=20, width=900, height=900,innerWidth=900, innerHeight=900'); return false;">Page2</a><br />
<a href = "page3.htm", onClick="window.open(this.href, 'content',' scrollbars=yes, resizable=yes, left=70, top=20, width=900, height=900, innerHeight=900, innerWidth=900'); return false;">Page3</a>

点击链接时,我会弹出一个弹出窗口。但是当点击另一个链接时,弹出窗口最小化。我需要打开它并从另一个页面显示适当的内容。

不幸的是,我无法使用任何javascript函数来focus我的弹出窗口,因为我需要将链接放到另一个供应商的网站上,只允许复制简单的html,因此,当其他人点击该链接时,弹出窗口将打开相应的内容。

有什么办法可以实现我目前拥有的东西吗?

0 个答案:

没有答案