當單選按鈕「否」被選中時,我的下拉菜單僅禁用(灰色)。當沒有選擇任何東西時如何禁用下拉菜單?顏色和陰影是我的2個下拉菜單的名稱。如果沒有從單選按鈕中選擇任何內容,如何禁用下拉菜單
$("input[name^='attendance']").click(function() {
var id = this.name.replace('attendance', '');
$("#colour" + id + ", #shade" + id).prop("disabled", this.value == 'No');
'this'的定義來自哪裏? – 2012-03-13 15:00:12