我有与此相似的代码。但我想在页面加载时切换字段集。另外,当有人点击图例
时显示和隐藏<fieldset>
<legend class="hide">Tags</legend>
<div>
<label>
<input type="checkbox" name="col" value="summary"
checked="checked" />
Name
</label>
<label>
<input type="checkbox" name="col" value="lastname" />
LastName
</label>
</div>
</fieldset>
jQuery
$(function(){
$('legend').click(function(){
$(this).nextAll('div').toggle();
$(this).hasClass('hide')?($(this).attr("class", "show")):
($(this).attr("class", "hide"));
});
})