前端基础 -JQuery之遍历

简介: 前端基础 -JQuery之遍历

JQuery遍历

两种遍历方式:

jquery对象.each(function(index,ele){
    //this    遍历后的结果   js对象
    //ele     遍历后的结果   js对象
    //index   索引
})

$.each(jquery对象,function(index,ele){
        //this    遍历后的结果   js对象
        //ele     遍历后的结果   js对象
        //index   索引
  })

案例:遍历隐藏域的值

直接上代码:

<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>05-可见性过滤选择器.html</title>
    <script src="../js/jquery-1.11.0.min.js"></script>
    <script type="text/javascript">
      $(function() {
        $("#b1").click(function() {
          /*
           * 方式一:
           * 
           * $("[type=hidden]").each(function() {
            alert(this.value);
          });
          * 
          * */
          //方式二:
          $("[type=hidden]").each(function(index, val) {
            alert(index + " : " + val.value);
          });
        })
        $("#b2").click(function() {
          $.each($("[type=hidden]"), function(index, val) {
            alert(index + " : " + val.value);
          });
        })
      });
    </script>
  </head>
  <body>
    <input type="button" value=" 选取所有的文本隐藏域, 并打印它们的值" id="b1" />
    <input type="button" value=" 选取所有的文本隐藏域, 并打印它们的值" id="b2" />
    <br /><br />
    <!--文本隐藏域-->
    <input type="hidden" value="hidden_1">
    <input type="hidden" value="hidden_2">
    <input type="hidden" value="hidden_3">
    <input type="hidden" value="hidden_4">
  </body>
</html>
目录
相关文章
|
3月前
|
JavaScript
jQuery 遍历
jQuery 遍历
38 2
jQuery 遍历
|
3月前
|
JavaScript
jQuery 遍历 方法
jQuery 遍历 方法
38 5
|
1月前
|
JSON 缓存 前端开发
个人练习前端技术使用Bootstrap、JQuery、thymeleaf
个人练习前端技术使用Bootstrap、JQuery、thymeleaf
35 3
|
2月前
|
前端开发 小程序 Java
java基础:map遍历使用;java使用 Patten 和Matches 进行正则匹配;后端传到前端展示图片三种情况,并保存到手机
这篇文章介绍了Java中Map的遍历方法、使用Pattern和matches进行正则表达式匹配,以及后端向前端传输图片并保存到手机的三种情况。
27 1
|
3月前
|
JavaScript
jQuery 遍历
jQuery 遍历
40 1
jQuery 遍历
|
3月前
|
JSON 缓存 前端开发
个人练习前端技术使用Bootstrap、JQuery、thymeleaf
个人练习前端技术使用Bootstrap、JQuery、thymeleaf
31 2
|
3月前
|
JavaScript
jQuery 遍历 - 同胞(siblings)
jQuery 遍历 - 同胞(siblings)
32 6
|
3月前
|
JavaScript
jQuery 遍历 - 祖先
jQuery 遍历 - 祖先
40 5
|
3月前
|
JavaScript
jQuery 遍历- 过滤
jQuery 遍历- 过滤
29 2
|
3月前
|
JavaScript
jQuery 遍历 方法
jQuery 遍历 方法
29 3