我有这个标题为 Criatweb 的父页面,其中有一个 iframe 页面,我想更改 iframe 页面内 div 的显示,但只有当它的标题是 Criatweb 时才更改。我在 iframe 页面中尝试过,但没有成功:
<script type="text/javascript">
if (window.parent.document.title == 'Criatweb')
{document.getElementById('customizarsite').style.display = 'none';}
</script>