使用jquery将页面标题更改为breadcrumb中的最后一项

时间:2012-10-18 19:03:38

标签: jquery title breadcrumbs

我正在使用面包碎片,需要将页面标题更改为最后一个痕迹中的文本。这可能吗?

<div class="span12">
<div class="breadcrumb clearfix">
<span itemtype="http://data-vocabulary.org/Breadcrumb" itemscope="">
 <a itemprop="url" title="domain" href="mydomain.com">
  <span itemprop="title">Home</span>
 </a>
</span>
  <span class="arrow-space">></span>
 <span itemtype="http://data-vocabulary.org/Breadcrumb" itemscope="">
    <a itemprop="url" title="tape" href="/collections/tape">
     <span itemprop="title">tape</span>
    </a>
 </span>
<span class="arrow-space">></span>
  <span itemtype="http://data-vocabulary.org/Breadcrumb" itemscope="">
    <a itemprop="url" title="black" href="/collections/tape/black">
      <span itemprop="title">black</span>
    </a>
</span>
</div>
</div>

不确定如何解决这个问题

2 个答案:

答案 0 :(得分:1)

document.title = $("span:last", ".breadcrumb").text() ​​

答案 1 :(得分:0)

这是对的!

 var newhefa= $(".breadcrumb").find("span:last").text()
 document.title = newhefa