jquery可见性选择器(综合)

Posted yangzailu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery可见性选择器(综合)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>可见性选择器</title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <style type="text/css">
  .yang{ border-collapse: collapse; width:500px;height:30px;border:1px solid red;"}
  </style>
  <script  type="text/javascript" src="jquery-1.7.1.min.js"></script>
  <script type="text/javascript">
  /*
    :hidden  //匹配所有隐藏的元素
    :visible   //匹配所有显示的元素
  */
        window.onload=function(){
        $(#btnOk).click(function(){
           //匹配匹配所有隐藏的div
            $(div:hidden).show();
          //匹配匹配所有显示的div
            $(div:visible).hide();
            });
        };
  </script>
 </head>
 <body>
    <div>div1</div>
    <div style="display:none">div2</div>
  <hr/>
  <input type="button" id=‘btnOk‘ value=‘确定‘  />
 </body>
</html>

 

以上是关于jquery可见性选择器(综合)的主要内容,如果未能解决你的问题,请参考以下文章

jQuery学习- 子选择器与可见性选择器

jQuery可见性选择器

jquery可见性选择器(匹配所有隐藏的元素)

jquery可见性选择器(匹配匹配所有显示的元素)

JQuery选择器学习整理(基本选择器,层级选择器,伪类选择器,属性过滤,内容过滤,可见性过滤,范围选择器,排除选择器)

jquery选择器