zoukankan      html  css  js  c++  java
  • 学习 jQuery 3 选择器

     

    jQuery 使用两种方式来选择 html element,第一种使用CSSXpath选择器联合起来形成一个字符串来传送到jQuery的构造器(如:$("div > ul a"));第二种是用jQuery对象的几个methods(方法)。这两种方式还可以联合起来混合使用。

    使用 CSS XPath 选择器选择的方法有许多种用法,关于详细的 CSS 选择器请参考附录。

    首先来看通过元素的 ID 取得元素:$( “#id” ),在名字前面增加 # 表示这是一个 id,注意引号不要丢掉。

    在页面中增加一个 id msg span 元素,将 helloworld 显示在 span 元素中,可以如下实现:

    <html>

    <head>

             <title>Hello</title>

             <script src="jquery-1.2.5.js" type="text/javascript"></script>

                       <script type="text/javascript">

                                $( function() {

                                         $("#msg").html("Hello, world."); } );

                       </script>

             </head>

    <body>

             <span id="msg"/>

    </body>

    </html>

    注意:#id 需要用引号引起来,有参数的 html 函数用来为元素的 innerHTML 赋值。

    下一个例子:

    比如我们有一个 list ,它的 ID orderedlist,那么取得这个 list 的引用的 jQuery 就是 $( “#orderedlist” ),为它增加一个值为 red class 属性 $("#orderedlist").addClass("red")addClass 函数用来为元素增加 CSS 设置。取得 list 中的最后一个 li 的引用,$( “#orderedlist li:last” )

    下面的例子将最后一个 li 的内容更改为 hello, world.

    <html>

    <head>

             <title>Hello</title>

             <script src="jquery-1.2.5.js" type="text/javascript"></script>

             <script type="text/javascript">

                                $( function() {

                                         alert("wait");

                                         $( "#orderedlist li:last" ).html("hello, world.");

                                 } );

             </script>

    </head>

    <body>

             <ol id="orderedlist">

                       <li>First element</li>

                       <li>Second element</li>

                       <li>Third element</li>

             </ol>

    </body>

    </html>

  • 相关阅读:
    动画效果开关
    学习网站
    html5标签 H5标签
    Bootstrap
    【CSP-S 2019模拟】题解
    【CSP-S 2019模拟】题解
    【LOJ #3095】【SNOI2019】—字符串(模拟)
    【LOJ #3095】【SNOI2019】—字符串(模拟)
    【LOJ #3084】【GXOI / GZOI2019】—宝牌一大堆(DP)
    【LOJ #3084】【GXOI / GZOI2019】—宝牌一大堆(DP)
  • 原文地址:https://www.cnblogs.com/haogj/p/1232091.html
Copyright © 2011-2022 走看看