如题
在a.html中有如下iframe,初始display属性为none,并通过js实现点击切换display属性为block。
<div id="commodity_wrapper" class="iframe-wrapper" style="display: none">
<iframe src="commodity_manage.html" ></iframe>
</div>
现在我想在b.html中通过id获取这个div,并实现点击将display再次设置为none。
我在网上查到的window.parent和window.opener貌似都不起作用。
目前不能实现功能的代码如下:
function toggle_invisible(id){
let ele = window.parent.document.getElementById(id);
ele.style.display = "none";
}
请问是我对这两个方法的用法有误,还是我应该用别的方法呢?