-----043-Location.html-----
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>标题</title> </head> <h3>Location</h3> <body> <ul> <script type="text/javascript"> document.write("<li>Href: " + location.href); document.write("<li>Protocol: " + location.protocol); document.write("<li>Host: " + location.host); document.write("<ol><li>Hostname: " + location.hostname); document.write("<li>Port: " + location.port + "</ol>"); document.write("<li>PathName: " + location.pathname); document.write("<li>锚: " + location.hash); document.write("<li>查询段: " + location.search); </script> </ul> <button onclick="location.assign('http://www.google.com')">加载谷歌</button> <button onclick="location.replace('http://www.google.com')">用谷歌取代</button> <button onclick="location.reload(false)">刷新</button> <button onclick="location.reload(true)">强制刷新</button> </body> </html>