隐藏特定页面上的div(jquery)

时间:2015-10-14 03:07:27

标签: javascript jquery

您好我想在我的header.php文件中的所有页面上隐藏div,除了在一个页面上我不会显示

<script type="text/javascript"> 
$( document ).ready(function() {
    if (window.location.href == "http://www.mywebsite.com/shop/") { 
        document.getElementById("top").style.display="block";
    }
    else {
     document.getElementById("top").style.display="none";
    }
});
</script>

任何想法出了什么问题?

1 个答案:

答案 0 :(得分:0)

我的网址不正确,我的网站没有。

如果其他人有类似问题,请使用控制台日志来检查您的网址是什么

console.log(window.location.href)

并使用控制台日志检查您的网址是否正确

console.log(window.location.href == "http://www.url.com")