打开新网页:
window.open("www.molibird.com");
window.open("www.molibird.com", "窗口名", "height=400,width=100"); //设置窗口大小
等待n秒后跳转:
setTimeout('location="www.molibird.com"', 3000); //3秒
当前页面跳转:
location.href = "www.molibird.com"; //可以返回
location.replace("www.molibird.com"); //不可以返回
location.href = location.href + '参数'; //刷新本页面 并传递参数
刷新 location.reload()
location.reload(); //可能从缓存中加载
location.reload(true); //从服务器重新加载
parent.location.reload(); //刷新父页面
前进/后退方式 跳转:
Internet Explorer和Opera从0开始,而Firefox、Chrome和Safari从1开始。
history.go(n); //跳转n页面 1==前进一页 -1==后退一页
history.go("str"); //URL包含的字符串
var length = history.length; //返回历史记录数量
关闭页面:close()
火狐需要配置:
about:config
dom.allow_scripts_to_close_windows = true
window.close();