jQuery - How do I bind events to hidden elements that will be shown later?

后端 未结 6 1160
花落未央
花落未央 2020-12-08 00:15

I am trying to attach \'click\' events to all elements of a particular class. The problem is some of the elements are on a tab that is hidden (display: none) at the time tha

6条回答
  •  庸人自扰
    2020-12-08 00:45

    Times have changed, it would now be done using ".on"

    .on('click',function(){/* code */});

提交回复
热议问题