我需要一个有效的 javascript 代码,它只在我网站的一个特定页面上显示某个面板,并将其隐藏在其余页面上。这是一个论坛式的设置。
这是我到目前为止所得到的。
<script type="text/javascript">
function ShowPanel()
{
if(document.location.href == "http://www.exampleurl.com")
{document.getElementById("panel").style.display = "block";}
else
{document.getElementById("panel").style.display = "none";}
}
</script>
<div id="panel" onload="ShowPanel">
Example text.
</div>
根据我查过的示例代码,这一切似乎都是合理的,但显然某处存在错误。没发生什么事。
感谢您的检查!