我是 jQuery 新手,我知道这个问题可能看起来很愚蠢。但是,这是我到目前为止所拥有的...... http://jsfiddle.net/jHyJu/
$('[id^=content]').hide();
$('#baseSection').delegate("li", "click", function() {
var id = $(this).attr('id').replace('bcontent','');
$("#baseContent").html($("#content-"+id).html());
});
$('[id^=content]').hide();
$('#headSection').delegate("li", "click", function() {
var id = $(this).attr('id').replace('hcontent','');
$("#headContent").html($("#content-"+id).html());
});
我需要脚本来组合单击的 ID,以便显示自定义内容。