如何將活動頁面標題更改爲h1標題或h1內容?jQuery將標題更改爲活動頁面中的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;
});
我想要將整頁標題更改爲活動頁面h1標題 – 2012-08-10 18:56:09