标签:
window.open(‘http://www.baidu.com/‘, ‘_self‘);
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <script> window.onload=function () { var oTxt=document.getElementById(‘txt1‘); var oBtn=document.getElementById(‘btn1‘); oBtn.onclick=function () { var oNewWin=window.open(‘about:blank‘); oNewWin.document.write(oTxt.value); }; }; </script> </head> <body> <textarea id="txt1" rows="10" cols="40"></textarea><br /> <input id="btn1" type="button" value="运行" /> </body> </html>
window.close();
–关闭时提示问题
这个窗口被open出来
alert(window.navigator.userAgent);//当前浏览器版本
•window.location 可以读取可以写入
window.location=‘http://www.baidu.com/‘ //加载这个网址 alert(window.location); //弹出当前网址
//alert(‘abc‘); /*var b=confirm(‘今天下雨了吗?‘); alert(b);*/ var str=prompt(‘请输入你的姓名‘, ‘blue‘); alert(str);
BOM.avi
1. window.open() 方法及相关参数
2. 运行代码框实例
3. document.write() 方法
4. about:blank 打开新窗口及返回值
5. close()关闭当前窗口及新开窗口特性
6. window.navigator.userAgent 检测浏览器版本
7. window.location 读写地址栏
8. 可社区尺寸、滚动距离
9. 系统对话框及返回值
10. 侧边栏广告实例
11. window.onscroll 事件及处理窗口变化等细节
12. 解决滚动条闪烁问题:固定定位与滑动效果
13. 返回顶部效果实例
14. 解决定时器与事件冲突的问题
标签:
原文地址:http://www.cnblogs.com/eveblog/p/4512151.html