iframe 显示和自己关闭
- 父html
其中tc/index.html为子html1
<iframe id="tc" src="tc/index.html" allowfullscreen="" allow="autoplay" width="100%" height="100%" style="border: 0px; opacity: 1; margin: 0px; padding: 0px; position: relative; display: none;"></iframe>
js 打开关闭方法
1 | function showTC() { |
- 子html
调用父html的js关闭方法
1 | window.parent.closeTC(); |