1、Window.Screen
screen.availWidth - 可用的屏幕寬度
screen.availHeight - 可用的屏幕高度
2检诗、window.location 對(duì)象
用于獲得當(dāng)前頁面的地址 (URL)蜡秽,并把瀏覽器重定向到新的頁面车荔。
location.hostname 返回 web 主機(jī)的域名
location.pathname 返回當(dāng)前頁面的url路徑
location.port 返回 web 主機(jī)的端口 (80 或 443)
location.protocol 返回所使用的 web 協(xié)議(http:// 或 https://)
document.write(location.href);返回整個(gè)url
location.assign() 方法加載新的文檔锻弓。
3、history
(window可要可不要).history.back() - 與在瀏覽器點(diǎn)擊后退按鈕相同
(window).history.forward() - 與在瀏覽器中點(diǎn)擊按鈕向前相同
4蔫骂、獲取瀏覽器信息
window.navigator 對(duì)象包含有關(guān)訪問者瀏覽器的信息么翰。
5、彈出框
警告框:alert("text")
確認(rèn)框:confirm("text")
提示框:prompt("文本","默認(rèn)值")
6辽旋、計(jì)時(shí)
var t=setTimeout("javascript語句",毫秒)
clearTimeout(t):清除計(jì)時(shí)
7浩嫌、document.cookie
length、indexof
document.cookie=c_name+ "=" +escape(value);
c_start=document.cookie.indexOf(c_name + "=")