How to trigger checkbox click event even if it's checked through Javascript code?

前端 未结 7 1093
灰色年华
灰色年华 2021-01-30 19:39

I have many checkboxes in my page and there is a select all checkbox which checks all the checkboxes. Somehow I want to emulate that click event of checkbox even if it\'s checke

7条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-30 20:01

    You can use .change() function too

    E.g.:

    $('form input[type=checkbox]').change(function() { console.log('hello') });
    

提交回复
热议问题