trigger click event in iframe parent window

后端 未结 2 754
北海茫月
北海茫月 2020-12-10 15:36
Parent Window <
相关标签:
2条回答
  • 2020-12-10 16:01

    I have successfully used the following format where other options didn't work.

        if ($("#maip", window.parent.document).length > 0){
            $("#mainp", window.parent.document).click();
    
    0 讨论(0)
  • 2020-12-10 16:07
    window.parent.$('#mainp').trigger('click');
    

    or

    window.parent.$('#mainp').click();
    
    0 讨论(0)
提交回复
热议问题