单击后弹出和重定向

时间:2016-05-31 12:02:00

标签: javascript html

我想要实现的是打开一个带有windowopen()功能的弹出窗口。同时在主窗口中将用户带到另一页。

 <a href="http://www.google.com/" class="thumbnail" 
    onclick="return !window.open(this.href, 'Google', 'width=500,height=500')"
    target="_blank">
    Link
 </a>

一旦用户点击Link,我希望弹出窗口加载Google和原始页面,以便将用户导航到.index.php任何建议?

3 个答案:

答案 0 :(得分:1)

以下代码适用于Chrome和Firefox:

<a onClick="window.location='http://www.yahoo.com'" target='_blank' href="http://www.google.com">Click me</a>

大多数浏览器会自动阻止弹出窗口,因此最好使用目标设置为“_blank”的href

答案 1 :(得分:1)

使用Jquery

$(".link").click(function(){
    window.open($(this).attr("href"), "popupWindow", "width=600,height=600,scrollbars=yes");
});

Demo

答案 2 :(得分:1)

<a href="http://www.google.com/" class="thumbnail" 
    onclick="window.open(this.href, 'newwindow', 'width=500,height=500');  return true;">
    Link
 </a>