Get data from iframe

前端 未结 4 861
遇见更好的自我
遇见更好的自我 2020-12-20 13:05

I am doing this first time. I have created an iframe on my page and I want the text from the iframe through jquery. Here is my code :<

4条回答
  •  心在旅途
    2020-12-20 13:16

    The contentWindow works in both FF and chrome

    document.getElementById('myFrame').contentWindow.document.body    
    

    Would give you a DOM element body

    You can also try something like

     window.frames['myIframe'].document.body    
    

    That might do the trick for you also

    You might have problems with your browsers built in security. If you run this on a local machine. There is a way to disable browsers security.

提交回复
热议问题