0

如何将我的活动页面标题更改为 h1 标题或 h1 内容?

HTML

<section id="contact" class="page_content">
            <h2 title="Contact">Contact</h2>  
</section>

JavaScript

$("ul.pages li").click(function() {
     $("ul.pages li").removeClass("active");
     $(this).addClass("active"); 
     $(".page_content").hide();
     var activepage = $(this).find("a").attr("href")
     $(activepage).show();                          
     return false;
});
4

4 回答 4

2

尝试;

$("ul.pages li").click(function() {
     $(this).addClass('active').siblings().removeClass('active'); 
     $(".page_content").hide();
     var activepage = $('a', this).attr("href");
     $(activepage).show();
     document.title = $('h1', activepage).first().text();   
     $('title').text( document.title );                        
     return false;
});
于 2012-08-10T18:39:16.503 回答
0

添加 id:<h1 id="mytitle" title="contact">联系人</h1>

 $("ul.pages li").click(function() {
    $("ul.pages li").removeClass("active");
    $(this).addClass("active"); 
    $(".page_content").hide();
    var activepage = $(this).find("a").attr("href")
    $(activepage).show();

    // NEW:
    $("#mytitle").text("Hello this is changed");
    $("#mytitle").attr("title","we can also change here");     

    return false;
});

希望这就是你要找的

于 2012-08-10T18:38:50.473 回答
0

如果要更改title页面的值,可以尝试:

var current = $('h1').attr('title')
$('title').text(current)

// or document.title = current;
于 2012-08-10T19:10:52.397 回答
0

使title属性与当前页面的id匹配,然后

$("ul.pages li").click(function() {
     $("ul.pages li").removeClass("active");
     $(this).addClass("active"); 
     $(".page_content").hide();
     var activepage = $(this).find("a").attr("href")
     $(activepage).show();       
     $("h1[title="+activepage+"]").html("The new Title");
     return false;
});
于 2012-08-10T18:41:40.297 回答