标签:style blog http color io os ar 使用 java
1.window 对象,就是把浏览器与javascript相关联。
2.全局变量(var a)是window对象的属性;全局函数(var a={})是window对象的方法。
3.window.document.getElementById("header");是window对象的方法。
4.获得浏览器窗口尺寸
对于Internet Explorer、Chrome、Firefox、Opera 以及 Safari:
对于 Internet Explorer 8、7、6、5:
或者
5.Window Screen获得屏幕宽度与高度
注:除去窗口任务栏后的宽度和高度
6.JavaScript Window Location 对象用于获得当前页面的地址 (URL),并把浏览器重定向到新的页面
7.JavaScript Window History
8.JavaScript 消息框
警告框:确认 alert("文本")
确认框:确认+取消 confirm("文本"),“确认”返回值为true;“取消”返回值为false
提示框:确认+取消 prompt("文本","默认值"),“确认”返回值为输入值;“取消”返回值为null
9.JavaScript 计时
<html> <head> <script type="text/javascript"> var c=0 var t function timedCount() { document.getElementById(‘txt‘).value=c c=c+1 t=setTimeout("timedCount()",1000) } </script> </head> <body> <form> <input type="button" value="Start count!" onClick="timedCount()"> <input type="text" id="txt"> </form> </body> </html>
clearTimeout()语法:clearTimeout(setTimeout_variable)
例:在上面的例子里加以下函数,则停止这个计时器。
function stopCount() { clearTimeout(t) }
标签:style blog http color io os ar 使用 java
原文地址:http://www.cnblogs.com/JolinChan/p/4037146.html