0
我一直在試圖創建一個jquery函數,它將在表格行中的所有選擇的toogle值。我想出了這個sollutionJquery切換下拉值
$(function() {
$(".toogle").click(function() {
if ($(this).hasClass("on") === true) {
$(this).addClass("off");
$(this).removeClass("on");
} else {
$(this).addClass("on");
$(this).removeClass("off");
}
$(this).each(function() {
if ($(this).hasClass("on") === true) {
$(this).closest('tr').find('select').each(function() {
$(this).val("1");
});
} else {
$(this).closest('tr').find('select').each(function() {
$(this).val("0");
});
}
});
});
});
你可以看到完整的代碼在這裏:http://jsfiddle.net/7BZNe/
,但想知道它是否能以更好的方式來完成。
如果它是一個兩態場,你應該使用複選框。 –
我喜歡這個詞toogle。 –