下面的JS代码通过window.open打开链接,通过this.href获取当前超级链接。
<a href='http://www.75271.com' onclick='window.open(this.href,"Pennies", "resizable=yes,status=yes,toolbar=yes,location=yes,menubar=yes,"+ "scrollbars=yes,width=800,height=800"); return false;'>Pennies</a>
这种方式比下面这种方式要好
<a href='#' onclick='window.open("http://www.75271.com","Pennies", "resizable=yes,status=yes,toolbar=yes,location=yes,menubar=yes,"+ "scrollbars=yes,width=800,height=800"); return false;'>Pennies</a>
第二种方式对搜索引擎不友好