我在外部资源(实时网络摄像头)中包含一个iframe,我试图删除弹出内容框中的链接,在这种情况下包含iframe。
这是我得到的HTML:
<iframe>...</iframe>
#document <!-- here is the content of the "hidden" iframe -->
</iframe> <!-- greyed out in the js console-->
每当我尝试删除iframe链接时
$('iframe').find('a') //[]
$('iframe').children() //[]
你们有什么建议吗?谢谢。