JS中的top是什么?


<iframe/>或者<frame>里面用主页面的东西,就是top.xxx

如:
<script>
  function func(){ ... };
</script>
<input type='text' id='t' />
<iframe scr='a.html'/>

//a.html简单内容如下
<script>
top.document.getElementById('t').value; //在a.html中取input的值
top.func(); //在a.html中执行func()
</script>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM