私は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 を結合するスクリプトが必要です。