window.navigator.userAgent
: 瀏覽器的 User Agent 字符串,表示瀏覽器的廠商和版本信息。window.open;
經過新窗口打開這個網址window.open('www.jd.com','_blank');
window.close();
關閉窗口window.location
對象:window.location對象是瀏覽器提供的原生對象,提供 URL 相關的信息和操做方法瀏覽器
Location.href
:整個 URL。Location.protocol
:當前 URL 的協議,包括冒號(:)。Location.host
:主機,包括冒號(:)和端口(默認的80端口和443端口會省略)。Location.hostname
:主機名,不包括端口。Location.port
:端口號。Location.pathname
:URL 的路徑部分,從根路徑/開始。Location.search
:查詢字符串部分,從問號?開始。Location.hash
:片斷字符串部分,從#開始。可讀可寫。Location.username
:域名前面的用戶名。Location.password
:域名前面的密碼。Location.origin
:URL 的協議、主機名和端口。