zoukankan      html  css  js  c++  java
  • 使用jquery方法的时候,要注意对象是哪个,否则很容易出错

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>W3Cschool教程(w3cschool.cn)</title>
    <script src="js/jquery.js"></script>
    <br>
    <script type="text/javascript">
    function open_win()
    {
    window.open("弹框1.html","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400")
    }
    </script>
    </head>

    <body>
    <div>
      <table>
        <tr>
          <td><input type="checkbox" value="111" /></td>
          <td><input type="checkbox" value="22" /></td>
          <td>1133</td>
          <td>1144</td>
        </tr>
        <tr>
          <td><input type="checkbox" value="333" /></td>
          <td><input type="checkbox" value="444" /></td>
          <td><input type="checkbox" value="22" /></td>
          <td>2233</td>
        </tr>
        <tr>
          <td><input type="checkbox" value="555" />
            <input type="checkbox" value="666" />
            <input type="checkbox" value="666" /></td>
          <td>3322</td>
          <td>3333</td>
        </tr>
        <tr>
          <td><input type="checkbox" value="777" /></td>
          <td><input type="checkbox" value="888" /></td>
          <td>4422</td>
          <td>4433</td>
        </tr>
      </table>
      <button type="button" value="打开窗口" >dddddd</button>
    </div>
    </body>
    <script type="text/javascript">
        $(function(){    
            $("button").click(function(){
                $("table tr").each(function(){
                    console.log($(this).find("td").find(":checkbox").last());

            console.log($(this).find("td").find(":checkbox:eq(1)"));
                })        
            })
        })

    </script>
    </html>

  • 相关阅读:
    推荐系统(二)
    应用高斯分布来解决异常检测问题(三)
    应用高斯分布来解决异常检测问题(二)
    应用高斯分布来解决异常检测问题(一)
    高斯(正态)分布、GDA、Mixtures of Gaussian
    主成分分析
    logistic回归
    推荐系统(一)
    基于朴素贝叶斯模型的文本分类
    K均值聚类算法
  • 原文地址:https://www.cnblogs.com/jianxingjianyuan/p/7575766.html
Copyright © 2011-2022 走看看