梦之都
JavaScript教程
,
location.hash
属性示例
在网址的末尾输入#dreamdu,按回车查看效果
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>JavaScript hash 属性示例</title> </head> <body> <p>在网址的末尾输入#dreamdu,按回车查看效果</p> <script type="text/javascript"> document.writeln(location.hash); </script> </body> </html>