JavaScript打开新页面的方法

var u="http://www.baidu.com";
window.location.href=u; //在当前的窗口打开
window.open(u,'content','',false);  //在中打开

你可能感兴趣的:(JavaScript)