我是Jquery的新手,并且一直在寻找这个问题的解决方案 - 我在我的Jquery文件顶部使用以下内容限制只能在主页上工作
if (top.location.pathname === '/')
{
如何将其更改为也可以在/ About页面上使用?
提前致谢!
答案 0 :(得分:2)
你必须这样做
if (top.location.pathname === '/' || top.location.pathname ==='/About' )
{
// Your code goes here
}