在多个iframe中仅定位一个iframe

时间:2018-12-12 18:27:18

标签: javascript html iframe

  1. 索引HTML具有多个iframe
  2. 如果iframe具有xyz类(“我将从索引HTML中添加/删除一个类,然后将一个类添加到iframe中的任何人”)
  3. 如果iframe仅在该iframe中具有xyz类,则将h2标签颜色设为红色
  4. 如果我从iframe中删除xyz类,则使h2标签变为正常颜色

示例git中的HTML文件:https://github.com/hiraghuak/iframe

我在iframe中的功能:

<script>
    $(function () {
        var iframes = parent.document.getElementsByTagName("iframe");
        console.log(iframes + ' iframe');
        for (var i = 0; i < iframes.length; i++) {
            var iframeGetAttribute = iframes[i].getAttribute("class");
            console.log(iframeGetAttribute + ' iframe GetAttribute');
            if (iframeGetAttribute == 'xyz') {
                // ITS ALL WORKING FINE 
            }
        }
    });
</script>

谢谢

0 个答案:

没有答案