css 仅在存在URL参数时才显示第一部分

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 仅在存在URL参数时才显示第一部分相关的知识,希望对你有一定的参考价值。

<script> 
ijQuery(document).ready(function(){
    
  console.log(document.location.search.length);
  
  if (document.location.search.length) {

  }
      
  else {
    $('.page-block').first().addClass('displaynone');
  }
	
});
</script>
<style>
  .displaynone {
    display: none !important;
  }
</style>

以上是关于css 仅在存在URL参数时才显示第一部分的主要内容,如果未能解决你的问题,请参考以下文章

如何在 HTML/CSS 中只显示图像的一部分?

CSS:仅在包含特定元素时才选择元素[重复]

仅在 ios 设备上反应本机“不存在捆绑 URL”

仅在满足条件时才添加到字典

jQuery 脚本仅在它位于函数之上时才有效

ASP.NET - 如何仅在尚未包含 CSS 时才包含它?