英文:
In jQuery is there any method similar to on('click' for checkbox enabled event?
问题
我有用于排序目的的升序和降序排序图标。在初始加载时,排序处于启用状态。
我需要类似以下的解决方案:
$('.pgggo-container-ajax-sorting').on('click', '.pgggocheckboxdecendinp', function(event) {
当点击降序图标时,应该运行此函数。但是上述方法对复选框无效。请帮忙。
英文:
I have accending and descending sort icons for sorting purposes. On the initial loading, sorting is in an enabled condition
I am in need of a solution similar to below:
$('.pgggo-container-ajax-sorting').on('click', '.pgggocheckboxdecendinp', function(event) {
say when the descend icon is clicked this function should run. But the above method is not working for a checkbox. Please help
答案1
得分: 1
你可以尝试这样做:
$('.pgggo-container-ajax-sorting').on('click', '.pgggocheckboxdecendinp', function(event) {
if($(this).is(':checked')) {
// 选中状态的代码
}
else {
// 未选中状态的代码
}
});
这将适用于复选框。
英文:
You can try this:
$('.pgggo-container-ajax-sorting').on('click', '.pgggocheckboxdecendinp', function(event) {
if($(this).is(':checked')) {
// code for checked condition
}
else {
// code for unchecked condition
}
});
This will work with checkbox.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论