$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;
,似乎没错,但是一旦点击,它就会打开到新标签页并且网址会更改,但页面仍然像主页一样。
答案 0 :(得分:0)
答案 1 :(得分:0)
为窗口指定名称和属性width / height。
onclick="window.open(this.href, 'myWindow', 'height=200,width=500'); return false;"