用js在新页面打开

时间:2022-07-04 17:09:05

在按钮事件处理方法中,要是通过location.href=url,这样是在当前窗口内跳转,用window.open(url)的话,打开新窗口,但一般会被弹出窗口拦截程序拦截,也不方便,所以可以通过下面方式达到相同效果 

html: 

<a href="#" id="tagOpenWin" target="_blank" ></a> 
<input id= "Submit6" type="button" value="打开" onclick="openWin()"/> 

js: 
function openWin(){ 
var obj = document.getElementById("tagOpenWin");   
obj.href = "http://www.baidu.com"; 
obj.click(); 
}