JS – windows 属性
alert (...) confirm (..) prompt (...) close () print ()
navigator
appCodeName # "Mozilla" appName # "Netscape" appVersion # "5.0" cookieEnabled # "ture" userAgent # 头信息
history
back() forward() go(-1) go(1) go(0)
location
host port href pathname protocol search assign(URL) reload() # 刷新
screen
height width availHeight availWidth
TIME
var t = setTimeout (FUNC, 1000); var t = setInterval(FUNC, 1000); clearTimeout(t); clearInterval(t);