How to find a div inside of an iframe

前端 未结 3 573
囚心锁ツ
囚心锁ツ 2021-01-05 00:41

I am trying to use jquery to find a div inside an iframe. Is there a better way than the one I\'m using below?

$(\'#Iframe\').contents().find(\'#MyDiv\')

fu         


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-05 01:30

    This will only work if the Iframe source is in the same domain as your page, if not the browser wont allow it for security reasons

提交回复
热议问题