我需要在由.on事件绑定的处理程序事件中获取复选框的值。
$("#mytweetswitch").on('change',this.checkTweets);
checkTweets: function(){
//here I need to get isChecked of #mytweetswitch
},
答案 0 :(得分:1)
checkTweets: function() {
return $(this).is(':checked');
}