我有一些問題。我有我的jsp頁面中的複選框。所以如果複選框被選中,我必須設置一個布爾變量爲true,否則爲false。我想是這樣的jQuery中的布爾變量
<script>
$(document).ready(function() {
$(".confirmCheckbox").change(function() {
boolean confirmAssignee = false;
$(this).attr("checked") {
confirmAssignee = true;
}
alert(confirmAssignee);
});
});
但它給這個錯誤
SyntaxError: missing ; before statement
$(this).attr("checked") {
我在頁面上覆式複選框。示例代碼是這樣的:
for loop(----)
<input type="checkbox" id="confirmBox-${loopCounter.index}" class = "confirmCheckbox">
任何幫助將不勝感激。如果需要的話問任何事
使用'var',代替'boolean' –
JS變種定義:https://開頭顯影劑.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/var –