?? ?? ??? ??
?? ?? ??? ??
href: ?? ????? ?? ??? ?????. JS ???? ??? ??? ? ????. location.;
hostname: ??? ??
pathname: ?? ?? ? ?? ??
search: ?? ???.
protocol: ????(?: http://, ftp://
hash: ?? ??) ?: #top
reload([true]): ? ???? ?? ????. true ????? ?? ?? ??? ?????
??: ?? ??? ?? ???? ? ???? ???? ?? ?????.
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script type="text/javascript"> //實(shí)例:測(cè)試不同瀏覽器 var str = "<h2>地址欄對(duì)象</h2>"; str += "地址欄地址:"+location.href; str += "<br>主機(jī)名:"+location.hostname; str += "<br>文件路徑及文件名:"+location.pathname; str += "<br>協(xié)議:"+location.protocol; document.write(str+"<hr>"); </script> </head> <body > </body> </html>