3



我想知道是否可以在 iframe 中访问自定义 iframe 属性。

我在想一些类似的东西:

html1.html

<iframe src="html2.html" customAttr="example"></iframe>

html2.html

<script>alert(window.customAttr);</script>

但是,该变量window.customAttr似乎未定义。

有谁知道,如何解决这个问题?

问候

4

1 回答 1

3

尝试这个:

<script>
    alert(window.frameElement.getAttribute('customAttr'));
</script>
于 2013-08-02T20:15:33.933 回答