location.hash
hash属性语法
location
.
hash
;
hash属性图示
hash属性说明
域名中#号后面的部分通常是指定位置的链接的方式产生的,例如:ASCII编码-控制字符
上面这个链接会直接定位到http://www.dreamdu.com/xhtml/ascii/文档中id为control_characters的标签处。
示例
document
.
writeln
(
location
.
hash
)
;
href属性说明
href是location最重要的属性,用于获取当前文档的URL或设置URL。如果设置URL,将导航到新的页面,例如:
location
.
href
=
"
http://www.dreamdu.com/
"
;