假设用户访问了网页http://somedomain.com/path/file.html#foo,我想使用JavaScript在页面的某个位置显示以下文字:
→ foo
答案 0 :(得分:4)
使用window.location.hash
获取主播的名称。
var anchorName = window.location.hash;
创建一个文本节点以显示您想要的内容:
var path = document.createTextNode("→ " + anchorName);
将其添加到Dom:
document.getElementById(idOfContainerYouWantToEdit).appendChild(path);