0
我創建了一個列表,當我選擇亮點但我只希望一個項目突出顯示時 - 同樣當該項目高亮顯示時,我需要啓用該按鈕 - 下面的示例:選擇一個li項目,然後啓用一個輸入按鈕
$('#sn-list li a').click(function() {
$(this).parent('li').toggleClass('highlight');
if (!currentPage.parent().hasClass('highlight')) {
$('#tabulation_button').removeProp("disabled");
alert('hello');
}
else {
$('#tabulation_button').prop("disabled", "disabled");
}
});
http://jsfiddle.net/zidski/rEH5L/