1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>location對象</title> 6 7 <script type="text/javascript"> 8 /*location對象*/ 9 //location對象是最有用的BOM對象之一,它提供了與當前窗口加載的文檔有關信息,還提供了一些導航功能 10 //事實上,location對象是一個很特別的對象,由於他既有window對象的屬性,也是document對象 11 //的屬性;換句話說,window.location和document.location引用的是同一個對象。 12 //host,href,pathname,port,protocol,search 13 //例1:查詢 14 //導航功能:location.href="https://www.baidu.com" 15 //location.hash="#section1"; 16 // location.search="?q=javascript" 17 //location.hostname="www.yahoo.com" 18 //location.pathname="mydir" 19 //location.port=8080; 20 location.replace("http://www.baidu.com"); 21 location.href="http://www.sina.com.cn/"//place和href有一個區別就是href會慘勝瀏覽記錄,replace不會。 22 </script> 23 </head> 24 <body> 25 26 </body> 27 </html>