①打开新窗口
window.open('about:blank','_blank'); //打开一个空白窗口
如果要往这个空白窗口写入内容,可以通过这种形式
var oNewWin=window.open('about:blank','_blank');
oNewWin.document.write('hello');
②关闭窗口
window.close(); 要注意火狐浏览器只能关闭由window.open()打开的窗口。
③拿到用户使用的浏览器的版本
alert(window.navigator.userAgent);
④拿到文件的URL地址
alert(window.location);
⑤提示框
alert(window.confirm("您是否要取消?"));
⑥提示语
alert(prompt("请输入您的姓名","白敬亭")); //第一个输入框(提示语)第二个框(默认在输入框的内容)
⑦前进、后退
window.history.back();
window.history.forward();
⑧如何做一个一直在右下角固定的盒子
window.onscroll=document.onresize=function(){
var scrollTop=document.documentElement.clientHeight || document.body.clientHeight //先获取到可视区高度
var div1=document.getElementById('div1');
div1.style.top=document.documentElement.clientHeight-div1.offsetHeight+scrollTop+'px';
}