如何告诉jQuery仅在两个特定的网页上运行一个函数?

时间:2014-07-29 00:36:04

标签: javascript jquery

我是Jquery的新手,并且一直在寻找这个问题的解决方案 - 我在我的Jquery文件顶部使用以下内容限制只能在主页上工作

   if (top.location.pathname === '/') 

        {

如何将其更改为也可以在/ About页面上使用?

提前致谢!

1 个答案:

答案 0 :(得分:2)

你必须这样做

if (top.location.pathname === '/' || top.location.pathname ==='/About' ) 
{
     // Your code goes here
}