在没有src的jQuery中选择iFrame中的元素?

时间:2018-07-16 21:00:40

标签: jquery iframe character element

我要在iframe中选择一个没有src元素的元素,因为它是由javascript填充的。以下是我拥有的源代码的一般结构,以及我尝试过的最新JQuery脚本。仍然没有运气。我想念什么吗?谢谢

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
    var context = $('#listing_content_ifr')[0].contentWindow.document;
    var $body = $('#tinymce', context);
    $body.addClass('is-active'); 
});
</script>
<style>
    #tinymce {border: solid 1px #ccc; height:300px; width:300px;}
</style>
</head>

<body>
    <iframe id="listing_content_ifr" frameborder="0" allowtransparency="true" style="width: 100%; height: 402px; display: block;"> 
       <html>
        <head>
        </head>
            <body id="tinymce" contenteditable="true">
                <p><br data-mce-bogus="1"></p>
            </body>
        </html>                
    </iframe>

</body>

</html>

0 个答案:

没有答案