我已經使用JavaScript動態地創建了一些複選框(如下),當點擊一個複選框(狀態已更改)時如何調用函數的任何想法?檢查一個複選框的狀態是否改變了Javascript
var eng_types = table[3].slice(3);
for(var i in eng_types) {
var name = eng_types[i];
// Create the necessary elements
var label = document.createElement("label");
var checkbox = document.createElement("input");
var description = document.createTextNode(name);
checkbox.type = "checkbox"; // Make the element a checkbox
checkbox.value = name; // Make its value "pair"
checkbox.name = i; // Give it a name we can check
label.appendChild(checkbox); // Add the box to the element
label.appendChild(description); // Add the description to the element
// Add the label element to your div
document.getElementById('eng_options').appendChild(label);
}
任何關於如何使每個複選框出現在一個新行的想法也將不勝感激。
在此先感謝!
可能重複的[jQuery複選框選中狀態更改事件](http://stackoverflow.com/questions/8423217/jquery-checkbox-checked-state-changed-event) – IronFlare