打开新标签/窗口

时间:2014-03-04 08:16:23

标签: javascript html

$output .= '<a class="icon icon2 shopping-cart ttip add_to_cart_button product_type_'
.$product->product_type.'" data-product_id="'
.$product->id.'" href="'.$link
.'" rel="tooltip" data-placement="bottom" title="'
.$label.'" onclick="window.open(this.href); return false;" ></a>

我尝试添加onclick="window.open(this.href); return false;,似乎没错,但是一旦点击,它就会打开到新标签页并且网址会更改,但页面仍然像主页一样。

2 个答案:

答案 0 :(得分:0)

在新标签页中打开链接非常简单。如果你甚至打扰做一些研究,你就会知道。

我建议你开始阅读像w3schools这样的网站......

即使查看锚点的属性也可以... W3C Documentation

答案 1 :(得分:0)

为窗口指定名称和属性width / height。

onclick="window.open(this.href, 'myWindow', 'height=200,width=500'); return false;"