Detecting the opening or closing of a details element

前端 未结 7 1018
栀梦
栀梦 2021-01-01 13:07

How can I detect when a details element is opened or closed in Javascript? Other than attaching a listener to the click function and checking if the open attribute is set or

7条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-01 13:12

    In jQuery you can catch the event using .on('toggle') like this:

    $('#detail-id').on('toggle', function() {
       //code
    });
    

提交回复
热议问题