使用jquery或任何脚本,如何在我的<p>
上使用class ='site-title'将语义<h1>
和<header/>
内的文本更改为我的域名而不使用{{1} }和http://
。
来源:
www.
TO (如果博客使用的是子域名):
<header role='banner'>
<h1 class='site-title'>My Blog Title</h1><!-- homepage header title -->
<p class='site-title' href='mylink'>My Blog Title</p><!-- other page header title -->
</header>
OR (如果博客使用自己的域名 - 而不是子域名):
<header role='banner'>
<h1 class='site-title'>myblog.blogspot.com</h1><!-- change the text My Blog Title only -->
<p class='site-title' href='mylink'>myblog.blogspot.com</p><!-- get my domain name witout http and www -->
</header>