从iframe中访问自定义属性

时间:2013-08-02 20:08:00

标签: javascript iframe attributes



我想知道是否可以访问iframe中的自定义iframe属性
我正在思考以下几点:

html1.html

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

html2.html

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

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

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

此致

1 个答案:

答案 0 :(得分:3)

试试这个:

<script>
    alert(window.frameElement.getAttribute('customAttr'));
</script>