一、window.open和window.location.href的几种用法
<a href="JavaScript:window.open('http://www.baidu.com','_self')"> 点击这里 </a>
<a οnclick="window.open('http://www.baidu.com','_self');void 0" href="#"> 点击这里 </a>
_parent表示父框架窗口,
_self表示覆盖该窗口
用window.location.href的就只能在当前页面打开,不能打开新窗口的
<a href="javascript:window.location.href=http://www.baidu.com"> 点击这里 </a>
<A href="javascript:window.location.href('http://www.baidu.com')"> 点击这里 </A>
二、