jquery循环操作

Posted 孔扎根

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery循环操作相关的知识,希望对你有一定的参考价值。

each遍历

用法一、

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <ul>
        <li>第一章</li>
        <li>第二章</li>
        <li>第三章</li>
        <li>第四章</li>
        <li>第五章</li>
    </ul>
<script src="jquery-1.8.2.js"></script>
<script>
//    为每个匹配的li元素运行一个函数
//      $(selector).each(function(index,element))
//      index - 选择器的 index 位置
//      element - 当前的元素(也可使用 "this" 选择器),如<li>第一章</li>
    $("li").each(function (i,item) {
        console.log(i)
        console.log(item)
    })
</script>
</body>
</html>

  

用法二、

$.each(data,function(index,element){})

 

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<ul>
<li>第一章</li>
<li>第二章</li>
<li>第三章</li>
<li>第四章</li>
<li>第五章</li>
</ul>
<script src="jquery-1.8.2.js"></script>
<script>
// 查询到所有的li元素
var sel = $("li");
// 对查询结果循环
$.each(sel, function (index, ele) {
console.log(index,ele)
})
</script>
</body>
</html>

  

以上是关于jquery循环操作的主要内容,如果未能解决你的问题,请参考以下文章

jquery基本操作

jquery 循环

jQuery应用 代码片段

Visual Studio 2012-2019的130多个jQuery代码片段。

常用python日期日志获取内容循环的代码片段

markdown 在WordPress中使用jQuery代码片段