zoukankan      html  css  js  c++  java
  • JQuery 快速入门教程二

    一、jQuery 语法:$(selector).action()

    • 美元符号定义 jQuery
    • 选择符(selector)“查询”和“查找” HTML 元素
    • jQuery 的 action() 执行对元素的操作

    示例

    $(this).hide() - 隐藏当前元素

    $("p").hide() - 隐藏所有段落

    $("p.test").hide() - 隐藏所有 class="test" 的段落

    $("#test").hide() - 隐藏所有 id="test" 的元素

     

    1、$(this).hide() 演示 jQuery hide() 函数,隐藏当前的 HTML 元素。

    <html>
    <head>
    <script type="text/javascript" src="jquery-1.7.1.min.js"></script> 
    <script type="text/javascript">
    $(document).ready(function(){
      $("button").click(function(){
      $(this).hide();
    });
    });
    </script>
    </head>
    
    <body>
    <button type="button">Click me</button>
    </body>
    </html>
    

     2、  jQuery hide() 函数,隐藏 id="test" 的元素。

    $("#test").hide();

    <html>
    <head>
    <script type="text/javascript" src="jquery-1.7.1.min.js"></script> 
    <script type="text/javascript">
    $(document).ready(function(){
      $("button").click(function(){
      $("#myID").hide();
    });
    });
    </script>
    </head>
    
    <body>
    <p>If you click on me, I will dispperar</p>
    <p id="myID">This is a paragraph.</p>
    <p>This is another paragraph.</p>
    <button type="button">Click me</button>
    </body>
    </html>
    

     3、$("p").hide() 表示隐藏所有 <p> 元素。

     4、 $(".test").hide()表示隐藏所有 class="test" 的元素。

    <html>
    <head>
    <script type="text/javascript" src="jquery-1.7.1.min.js"></script> 
    <script type="text/javascript">
    $(document).ready(function(){
      $("button").click(function(){
      $(".myClass").hide();
    });
    });
    </script>
    </head>
    
    <body>
    <p>If you click on me, I will dispperar</p>
    <p id="myID">This is a paragraph.</p>
    <p class="myClass">This is another paragraph.</p>
    <button type="button">Click me</button>
    </body>
    </html>
    

     二、所有的JQuery函数都位于下面的函数中

    $(document).ready(function(){
    --- jQuery functions go here ----

    });

     
  • 相关阅读:
    redis使用watch完成秒杀抢购功能:
    OAUTH协议
    常用mysql命令大全
    版本控制器 (Svn,Git)
    vue axios上传文件实例
    vue-resource 和 axios的区别
    js递归算法1+ 2+3.....100的和
    vue-cli title 里面怎动态显示文字
    Entity Framework With Mysql 之Code First
    关于a标签下的img元素在IE7下不能点击的问题
  • 原文地址:https://www.cnblogs.com/linlf03/p/2309603.html
Copyright © 2011-2022 走看看