首先通过检查2个不同的URL来显示/隐藏内容

时间:2016-09-01 04:45:59

标签: javascript jquery

我正在运行基于网址显示内容的代码。如果用户在页面X中,则页面显示内容编号1并隐藏编号2,如果他在页面Y中,则显示内容编号2并隐藏编号1.它可以工作,但我想添加要检查的第二个URL。

我的代码如下:

jQuery(document).ready(function($){

  var url = document.location.href;
    if(url == "http://w.com/") {
$(".banner1").show();
$(".adsenselistingtop").show();
$("#leheaderbanner").hide();
$("#showhide-in-home").hide();

  } else {
      $(".banner1").hide();
      $(".adsenselistingtop").hide();
      $("#leheaderbanner").show();
      $("#showhide-in-home").show();
  }



}); 

我尝试使用类似的东西,但它没有工作:

 if(url == "http://w.com/" && url == "http://w.com/index.php") {

1 个答案:

答案 0 :(得分:1)

使用OR而不是AND,因为URL可以是其中之一。

if(url == "http://w.com/" || url == "http://w.com/index.php")