使用 jquery 或任何脚本,如何将 Text inside semantic <p>
and <h1>
with class='site-title' on my<header/>
更改为我的域名,没有http://
,www.
和永久链接路径。
来源:
<header role='banner'>
<h1 class='site-title'>My Blog Title</h1><!-- homepage header title -->
<p class='site-title'><a href='mylink'>My Blog Title</a></p><!-- other page header title -->
</header>
TO(如果博客使用子域):
<header role='banner'>
<h1 class='site-title'>mysubdomain.blogspot.com</h1><!-- change the text My Blog Title only -->
<p class='site-title'><a href='mylink'>mysubdomain.blogspot.com</a></p><!-- get my domain name witout http and www -->
</header>
或者(如果博客使用自己的域 - 不是子域):
<header role='banner'>
<h1 class='site-title'>blogspot.com</h1>
<p class='site-title' href='mylink'>blogspot.com</p>
</header>