0
我目前使用此代碼,以顯示覆選框作爲一個自定義的控制,和它的作品完美:使用複選框,並在LightSwitch中對其計數HTML
// Create the checkbox and add it to the DOM.
var checkbox = $("<input type='checkbox'/>")
.css({
height: 20,
width: 20,
margin: "10px"
})
.appendTo($(element));
// Determine if the change was initiated by the user.
var changingValue = false;
checkbox.change(function() {
changingValue = true;
contentItem.value = checkbox[0].checked;
changingValue = false;
});
contentItem.dataBind("value", function (newValue) {
if (!changingValue) {
checkbox[0].checked = newValue;
}
});
但是現在我要擴展這個一點,我想知道如果有人知道我可以根據他們是真的還是假的來計數值。
什麼即時尋找:我有 低於2個複選框,則是 「TRUE」 和第二是 「FALSE」
- 我希望能夠使用類似var count的東西來計算這些值,然後將其放在while循環或數組中,然後將其顯示回像下面這樣的按鈕以進行測試:
window.alert("add in text here" + add_code_here)
所以例如數據將是:
var trueCount = 0;
var falseCount = 0;
window.alert("There are: " + trueCount + " values that are true and " + falseCount + " that are false");
和上面的例子trueCount = 1
和falseCount = 1
感謝您的任何輸入的人可以給我,這是最欣賞