例如:试图通过隐藏类(与wiki徽标相关联的“#central-featured-logo”)来隐藏wiki徽标但不起作用
<script>
$(document).ready(function () {
try {
if(window.name != "")
{
document.getElementById("#central-featured-logo").style.display ='none';
}
}
catch (e) { alert("Error: " + e); }
});
</script>
<iframe width="100%" height="400" src="https://www.wikipedia.org/"></iframe>
答案 0 :(得分:0)
您不应将主题标签传递给document.getElementById
。 central-featured-logo
似乎是一个类,而不是ID,因此您可能希望使用document.getElementsByClassName
代替:
$(document).ready(function () {
try {
if(window.name != "")
{
document.getElementsByClassName("central-featured-logo")[0].style.display ='none';
}
}
catch (e) { alert("Error: " + e); }
});