0

我们使用电子商务平台 X-cart 来托管我们的购物车以及 Janrain 的内置集成,它允许通过 facebook 等进行社交登录。我们希望将登录到购物车页面的能力限制为 .js 代码导致我们的网站在产品页面上加载缓慢。我们如何防止 .js 代码在产品页面上运行?

4

1 回答 1

0

只需将以下内容放在导致速度缓慢的 javascript 文件的开头:

if (window.location.href.indexOf('/path/to/shopping/cart/pages') != -1) {
   //We are in shopping cart pages
   //and we don't this js file to cause slowness, so just exit
   return;
}
// rest of the js file
...
于 2012-10-12T19:33:26.950 回答