<SCRIPT
LANGUAGE="JavaScript">
<!-
var
anchors
=
document.getElementById("DIV名").getElementsByTagName("a")
for(var
i=0i<anchors.lengthi++)
{var
anchor
=
anchors[i]anchor.target="_blank"}
//–>
</SCRIPT>
注解:target="_blank"
这个代码就是新窗口打开效果。
1、改变当前页面的url实现跳转:例如window.location="http://zhidao.baidu.com"
2、在当前窗口打开新页面也可以实现页面跳转:
window.open("http://zhidao.baidu.com",'_self')