这是我到目前为止所拥有的。http://jsfiddle.net/Scybf/22/
$('[id^=content]').hide();
$('#baseSection, #headSection').on("click", "li", function () {
var id = ($(this).parent().attr('id') == 'selectable') ? $(this).attr('id').replace('base', '') : $(this).attr('id').replace('head', '');
$("#customContent").html($("#content-" + id).html());
});
我需要它做的是获取基地的 ID 并前往相同的内容。例如,base1 + head1 = content1 或 base1 + head 2 = content2。
任何帮助将非常感激。