浏览器对象模型 (BOM) 使 JavaScript 有能力与浏览器“对话”。
浏览器对象模型(Browser Object Model)尚无正式标准。
由于现代浏览器已经(几乎)实现了 JavaScript 交互性方面的相同方法和属性,因此常被认为是 BOM 的方法和属性。
Window 对象
- 所有浏览器都支持
window
对象。它表示浏览器窗口。
所有 JavaScript 全局对象、函数以及变量均自动成为window
对象的成员。
全局变量是window
对象的属性。
全局函数是window
对象的方法。
甚至 HTML DOM 的document
也是window
对象的属性之一: - 浏览器窗口的高度和宽度:(不包括工具栏/滚动条)
var w=window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;
var h=window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
Window Screen
-
window.screen
对象包含有关用户屏幕的信息。 -
window.screen
对象在编写时可以不使用window
这个前缀。 -
screen.availWidth
属性返回访问者屏幕的宽度,以像素计,减去界面特性,比如窗口任务栏。
document.write("可用宽度:" + screen.availWidth);
- screen.availHeight 属性返回访问者屏幕的高度,以像素计,减去界面特性,比如窗口任务栏。
document.write("可用高度:" + screen.availHeight);
Window Location
-
window.location
对象用于获得当前页面的地址 (URL),并把浏览器重定向到新的页面。 -
window.location
对象在编写时可不使用window
这个前缀。 - 一些例子:
location.hostname // 返回 web 主机的域名
location.pathname // 返回当前页面的路径和文件名
location.port // 返回 web 主机的端口 (80 或 443)
location.protocol // 返回所使用的 web 协议(http:// 或 https://)
location.href // 返回当前页面的 URL。
location.assign() // 加载新的文档。
Window History
-
window.history
对象在编写时可不使用window
这个前缀。
为了保护用户隐私,对 JavaScript 访问该对象的方法做出了限制。 -
history.back()
方法加载历史列表中的前一个 URL。
这与在浏览器中点击后退按钮是相同的: -
history forward()
方法加载历史列表中的下一个 URL。
这与在浏览器中点击前进按钮是相同的:
Window Navigator
-
window.navigator
对象包含有关访问者浏览器的信息。 -
window.navigator
对象在编写时可不使用window
这个前缀。 - 来自 navigator 对象的信息具有误导性,不应该被用于检测浏览器版本
txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt+= "<p>Browser Name: " + navigator.appName + "</p>";
txt+= "<p>Browser Version: " + navigator.appVersion + "</p>";
txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt+= "<p>Platform: " + navigator.platform + "</p>";
txt+= "<p>User-agent header: " + navigator.userAgent + "</p>";
txt+= "<p>User-agent language: " + navigator.systemLanguage + "</p>";
- 由于不同的浏览器支持不同的对象,您可以使用对象来检测浏览器。例如,由于只有 Opera 支持属性
"window.opera"
,您可以据此识别出 Opera。
if (window.opera) {
...some action...
}
消息框
可以在 JavaScript 中创建三种消息框:警告框、确认框、提示框。
- 警告框经常用于确保用户可以得到某些信息。
当警告框出现后,用户需要点击确定按钮才能继续进行操作。
alert("文本")
- 确认框用于使用户可以验证或者接受某些信息。
当确认框出现后,用户需要点击确定或者取消按钮才能继续进行操作。
如果用户点击确认,那么返回值为true
。如果用户点击取消,那么返回值为false
。
confirm("文本")
- 提示框经常用于提示用户在进入页面前输入某个值。
当提示框出现后,用户需要输入某个值,然后点击确认或取消按钮才能继续操纵。
如果用户点击确认,那么返回值为输入的值。如果用户点击取消,那么返回值为null
。
prompt("文本","默认值")
计时事件
通过使用 JavaScript,我们有能力作到在一个设定的时间间隔之后来执行代码,而不是在函数被调用后立即执行。我们称之为计时事件。
- 未来的某时执行代码
var t=setTimeout("javascript语句",毫秒)
setTimeout()
方法会返回某个值。在上面的语句中,值被储存在名为t
的变量中。假如你希望取消这个 setTimeout()
,你可以使用这个变量名来指定它。
setTimeout()
的第一个参数是含有 JavaScript 语句的字符串。这个语句可能诸如 "alert('5 seconds!')
",或者对函数的调用,诸如 "alertMsg()
"。
第二个参数指示从当前起多少毫秒后执行第一个参数。
- 取消
setTimeout()
:clearTimeout()
<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)
}
function stopCount()
{
c=0;
document.getElementById('txt').value=0
clearTimeout(t);
}
</script>
</head>
<body>
<form>
<input type="button" value="开始计时!" onClick="timedCount()">
<input type="text" id="txt">
<input type="button" value="停止计时!" onClick="stopCount()">
</form>
<p>请点击上面的“开始计时”按钮来启动计时器。输入框会一直进行计时,从 0 开始。点击“停止计时”按钮可以终止计时,并将计数重置为 0。</p>
</body>
</html>
Cookies
- cookie 用来识别用户。
- cookie 是存储于访问者的计算机中的变量。每当同一台计算机通过浏览器请求某个页面时,就会发送这个 cookie。你可以使用 JavaScript 来创建和取回 cookie 的值。
- 当访问者首次访问页面时,他或她也许会填写他/她们的名字。名字会存储于 cookie 中。当访问者再次访问网站时,他们会收到类似 "Welcome John Doe!" 的欢迎词。而名字则是从 cookie 中取回的。
- 当访问者首次访问页面时,他或她也许会填写他/她们的密码。密码也可被存储于 cookie 中。当他们再次访问网站时,密码就会从 cookie 中取回。
- 当访问者首次访问你的网站时,当前的日期可存储于 cookie 中。当他们再次访问网站时,他们会收到类似这样的一条消息:"Your last visit was on Tuesday August 11, 2005!"。日期也是从 cookie 中取回的。
- 在这个例子中我们要创建一个存储访问者名字的 cookie。当访问者首次访问网站时,他们会被要求填写姓名。名字会存储于 cookie 中。当访问者再次访问网站时,他们就会收到欢迎词。
<html>
<head>
<script type="text/javascript">
function getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1)
{
c_start=c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
}
}
return ""
}
function setCookie(c_name,value,expiredays)
{
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : "; expires="+exdate.toGMTString())
}
function checkCookie()
{
username=getCookie('username')
if (username!=null && username!="")
{
alert('Welcome again '+username+'!')
}
else
{
username=prompt('Please enter your name:',"")
if (username!=null && username!="")
{
setCookie('username',username,365)
}
}
}
</script>
</head>
<body onLoad="checkCookie()">
</body>
</html>