我创建了一个列表,当我选择突出显示时,我只希望一次突出显示一个项目 - 同样,当项目突出显示时,我需要启用按钮 - 示例如下:
$('#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");
}
});