這是我到目前爲止。 http://jsfiddle.net/Scybf/22/jQuery添加2個ID到相等的內容
$('[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 + head2 = content2。
任何幫助將不勝感激。
BASE1 + HEAD2 =內容2?而不是base2 + head2 = content2。 – JohnJohnGa 2013-02-11 13:35:10
對不起,你很難理解你想要做什麼,你能告訴我們一些輸入/輸出嗎? – JohnJohnGa 2013-02-11 13:36:22
這個想法是一個自定義的工具概念,所以用戶將在第1部分中單擊一個基本部分,然後在第2部分中單擊一個頭部部分,然後它將顯示組合結果,該結果將是圖像和內容。 – Jon 2013-02-11 13:42:41