下面是我的代码,我在ul平日绑定工作日,我正在使用listview和模板,它工作正常,但我需要在选中复选框时获取值需要帮助,复选框可以选择多个所以我可以有多个值
<div data-role="view">
<ul data-role="listview" data-style="inset" data-template="script-id" data-source="listData"></ul>
<script id="script-id" type="text/x-kendo-template">
<div>
<input type="checkbox" class="checkclass" />
<h3 class="checkclass">#: week #</h3>
</div>
</script>
</div>
//data to bind list template
var listData = [{ week: 'Monday' },
{ week: 'Tuesday' },
{ week: 'Saturday ', },
{ week: 'Sunday', }]
答案 0 :(得分:0)
您可以使用on()
方法注册听众。所以在你的情况下:
$(".checkboxclass").on("change", function(){
if(this.checked) {
$(this).val();
}
})