-1

我想知道是否可以为带有哈希的 URL 设置唯一的标题标签。

例如,我可以为这个页面设置一个标题:

http://somesite.com

然后为这个网址设置一个单独的标题:

http://somesite.com#something

提前致谢!

4

1 回答 1

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>
于 2013-11-11T20:16:15.940 回答