我想知道是否可以在 iframe 中访问自定义 iframe 属性。
我在想一些类似的东西:
html1.html
<iframe src="html2.html" customAttr="example"></iframe>
html2.html
<script>alert(window.customAttr);</script>
但是,该变量window.customAttr
似乎未定义。
有谁知道,如何解决这个问题?
问候
我想知道是否可以在 iframe 中访问自定义 iframe 属性。
我在想一些类似的东西:
html1.html
<iframe src="html2.html" customAttr="example"></iframe>
html2.html
<script>alert(window.customAttr);</script>
但是,该变量window.customAttr
似乎未定义。
有谁知道,如何解决这个问题?
问候