我有一個jQuery的代碼在這裏:點擊禁用功能,否則功能有效?
jQuery(document).ready(function() {
$("td").click(function (e) {
var chk = $(this).closest("tr").find("input:checkbox").get(0);
if (e.target != chk) {
chk.checked = !chk.checked;
}
if ($(this).closest("tr").find("input:checkbox").is(":checked")) {
$(this).closest("tr").css("font-weight", "bold");
} else {
$(this).closest("tr").css("font-weight", "");
}
});
});
正如你可以看到我有很多的複選框並單擊任一td
它的檢查和添加CSS。
它工作正常。我想要的是,我也有很多select
箱子。
當我嘗試選擇一些功能的作品。
我想禁用單擊選擇框上的功能,因爲我想選擇不啓用複選框。
謝謝!!工作正常^ _ ^ – 2013-03-21 23:39:01