仅在一个页面上隐藏元素

时间:2016-03-22 14:14:24

标签: css

  

body.943 .ish-button-small {display:none;}

我想在ID为943的页面上隐藏“.ish-button-small”类。 请记住该页面。这样做的最佳方式是什么?

3 个答案:

答案 0 :(得分:1)

试试这个:

System.Threading.Thread.CurrentThread.Abort();
catch(ThreadAbortException te) {
    throw te;
}

答案 1 :(得分:0)

#943 .ish-button-small {display:none;}

答案 2 :(得分:0)

不能只使用CSS,这应该适用于Javascript

$(document).ready(function () {
  if (window.location.href.indexOf("943") != -1) {
    $("#.ish-button-small").hide();
  }
});

检查URL是否包含943,如果是,则隐藏带有类的元素.ish-button-small