我有一个基本页面,我在其中显示和隐藏基于按钮按下的 div。作为页面的一部分,我想更改标题以反映适当的内容。
这是HTML:
<h2 class="section_header left">
<span>
Missing <span id="category">People</span> Nationwide
</span>
</h2>
这是jQuery:
$(document).ready(function() {
$('#allcat').click(function(){
$('.child').show();
$('.adult').show();
$("#category").text("People");
});
$('#children').click(function(){
$('.child').show();
$('.adult').hide();
$("#category").text("Children");
});
$('#adults').click(function(){
$('.child').hide();
$('.adult').show();
$("#category").text("Adults");
});
});
我试过 .text() 和 .html()
谢谢你的帮助。