Attach click handler even on element inside iframe with jQuery

前端 未结 2 721
一生所求
一生所求 2020-12-16 14:50

How can I attach a click event handler to an element inside an iframe?

Here\'s what I tried and doesn\'t work:

$(\"#parent iframe\").contents().find(         


        
2条回答
  •  温柔的废话
    2020-12-16 15:19

    Discovered the problem. LIVE does not work inside an iframe. Switching to bind works fine. Will do manual event delegation instead.

提交回复
热议问题