`

$(document.body).|.each(false)|this.style.color|$(this).toggleClass("example")

 
阅读更多

<!DOCTYPE html>
<html>
<head>
  <style>
  div { color:red; text-align:center; cursor:pointer; 
        font-weight:bolder; width:300px; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
  <div>Click here</div>

  <div>to iterate through</div>
  <div>these divs.</div>
<script>
    $(document.body).click(function () {
      $("div").each(function (i) {
        if (this.style.color != "blue") {
          this.style.color = "blue";
        } else {
          this.style.color = "";
        }
      });
    });</script>

</body>
</html>


      if ($(this).is("#stop")) {
          $("span").text("Stopped at div index #" + index);
          return false;
        }


<script>
    $("button").click(function () {
      $("div").each(function (index, domEle) {
        // domEle == this
        $(domEle).css("backgroundColor", "yellow"); 
        if ($(this).is("#stop")) {
          $("span").text("Stopped at div index #" + index);
          return false;
        }
      });
    });

</script>


分享到:
评论

相关推荐

    Jquery使用小技巧汇总

    4. **检测浏览器**:在早期版本的JQuery中,可以使用`$.browser`来检测浏览器类型和版本,但自1.4版本起,推荐使用`$.support`来检测浏览器特性。 ```javascript $(document).ready(function() { // 注意:$....

    JQuery基础.docx

    $("#exampleId").css("color", "red"); ``` 2. **层次选择器** - **空格**:表示后代选择器,如`$("div p")`选择所有`&lt;p&gt;`元素,这些`&lt;p&gt;`元素是`&lt;div&gt;`元素的后代。 ```javascript $("div p").hide(); ``` ...

    jquery 常用 Dom操作

    ### jQuery 常用 DOM 操作详解 #### 属性(Attribute) 在 jQuery 中,属性操作主要包括获取、设置或修改元素的属性值。 1. **添加类(`addClass()`)** - **语法**:`$(...1. **创建元素并追加到 body(`$...

    JQuery1.3笔记.txt

    $(this).toggleClass("example"); }); }); ``` ```javascript $("button").click(function(){ $("div").each(function(index, domEle){ // domEle == this $(domEle).css("backgroundColor", "yellow"); ...

    JQuery常用方法一览(网络收集集合-超级全)

    - 示例 1:`$("span").click(function(){ $("li").each(function(){ $(this).toggleClass("example"); }); });` - 示例 2:`$("button").click(function(){ $("div").each(function(index, domEle){ $(domEle).css...

    JQuery:常用方法一览

    - 示例1:`$("span").click(function() { $("li").each(function() { $(this).toggleClass("example"); }); });` - 示例2:`$("button").click(function() { $("div").each(function(index, domEle) { // domEle =...

    ASP.NET JQuery常用方法

    $(this).toggleClass("example"); }); }); ``` 8. **事件绑定**: - 当文档加载完毕后执行函数: ```javascript $(document).ready(function() { // 在这里放置需要执行的代码 }); ``` - 为元素绑定点击...

    JQuery常用

    `$("img").attr("src", function(){ return this.src; })`,动态设置图片的`src`属性值。 3. **`html()`** - **用途**:获取或设置被选元素的内容(包括HTML)。 - **语法**:`$("selector").html()` 或 `$(...

    jquery 常用函数集

    $(this).toggleClass("example"); }); }); ``` - **事件绑定** - **`.ready(fn)`**:当DOM完全加载并可操作时,执行回调函数。 ```javascript jQuery(document).ready(function(){ // 页面加载完成后执行的...

    jQuery完全实例.rar

    $(this).toggleClass("example"); }); -------------------------------------------------------------------------------- 你可以使用 'return' 来提前跳出 each() 循环。 HTML 代码: &lt;button&gt;Change colors...

    JQUERY 常用方法大全

    ### JQUERY 常用方法大全 ...4. **`$.extend()`** - **用途**:扩展jQuery对象的方法。 - **示例**: ```javascript $.extend({ min: function(a, b) { return a ; }, max: function(a, b) { return a &gt; b ? a ...

    jQuery函数大全

    $(this).toggleClass("example"); }); ``` - 解释:遍历所有`&lt;li&gt;`元素,并为每个元素切换“example”类。 #### 四、事件处理 - **`jQueryEvent: ready(fn)`** - 功能:当DOM加载完成后执行一个函数。 - ...

    jquery基础教程

    1. **元素动态切换类**: `$(“span”).click(function(){ $("li").each(function(){ $(this).toggleClass("example"); }); });`,当点击`span`元素时,遍历所有`li`元素,并根据当前状态切换`example`类。 2. **按钮...

    Sortable前端框架

    fallbackOnBody: false, // Appends the cloned DOM Element into the Document's Body fallbackTolerance: 0, // Specify in pixels how far the mouse should move before it's considered as a drag. scroll:...

Global site tag (gtag.js) - Google Analytics