1

如何从 iframe 中获取元素?我想要一个元素在框架中的属性为真时;它显示一个文本,否则显示另一个文本;(对不起英语不好!)

像那样:

<!DOCTYPE html>
    <html>

    <head>
    <title>document</title>
    </head>

    <body>

    <iframe id="frame" src="">

    <!--we think in frame there is a span tag with button id-->
    <span id="button" aria-passed="true">sss</span>
    </iframe>
    <br>

    <!--if its true-->
    <p id="content1" style="display:none;">
    true
    </p>
    <!--if its false-->
    <p id="content2" style="display:none;">
    false
    </p>

    <!--now we want that, if aria-passed=true show content1 else content2.-->
    <script type="text/javascript">
    var Frame = document.getElementById('frame');
    if(new RegExp ("true","gim").test(frame.contentWindow.document.getElementById('button').aria-passed="true") == true) {
     document.getElementById('content1').style.display="block";
    }
    else {
     document.getElementById('content2').style.display="block";
     }
    </script>
    </body>

    </html>

现在我想说为什么这段代码不起作用???有任何想法吗?

4

2 回答 2

1

如果你使用jquery,它会容易得多。

示例代码:

var elementattibutevalue = $("#frameID").contents().find("#htmlelementID").attr("SampleAttribute");

希望能帮助到你。(^_^) _ _

于 2013-10-16T10:24:55.463 回答
0

我认为上面代码中的 iframe 只是演示了加载的页面代码的外观?看看这篇文章Javascript - Get element from within an iFrame。还将您的“框架”变量更改为小写。

于 2013-05-25T07:12:38.690 回答