我想知道是否可以为带有哈希的URL设置唯一的Title标签。
例如,我可以为此页面设置标题:
然后为此网址设置单独的标题:
提前致谢!
答案 0 :(得分:2)
这应该会有所帮助:
<html>
<head>
<title>Test Title</title>
<script type="text/javascript">
var url =document.URL;
if(url.indexOf('#')!=-1){
document.title = "This is the new page title.";
}
</script>
</head>
<body>
<a href="?#something">SomeLink</a>
</body>
</html>