js 网页跳转

 function toBooks() {    
     //在原有窗口打开
     window.location.href = "http://www.baidu.com";
     //打开新的窗口
     window.open("http://www.baidu.com");
}

猜你喜欢

转载自www.cnblogs.com/cjjjj/p/12405926.html