如果页面加载到 iframe 中,我正在尝试显示/隐藏不同的页面元素
<script>this.top.location !== this.location && (this.top.location = this.location);</script>
可以很好地转义 iframe,但是
<script>this.top.location !== this.location && (document.getElementById("toolbar").style.display="none");</script>
不会隐藏我的 id 为“工具栏”的 div。我究竟做错了什么?(我的javascript知识非常有限)。非常感谢。