jQuery学习笔录9(jQuery中的Table操作)

 
  
 1jQuery(function(){}) 或$(function(){});  它是$(document).ready() 的简写

 2 even偶数  ,odd 奇数

 3 siblings(), >  ,find() , addClass() ,removeClass() , css() , 多个 :  ,:contains()

选中的行,高亮


    Untitled Page
    
    


  
姓名性别暂住地
张山浙江宁波
里斯浙江郑州
爱喜浙江温州
松松浙江宁波
耳环nv浙江杭州

判断checkbox是否被checked上

    $("tbody>tr").click(function(){
        if($(this).find("input[type=checkbox]").attr("checked")==true)
        {
            $(this).addClass("hightLight")
        }
        else
        {
            $(this).revomeClass("hightLight");
        }
    })



你可能感兴趣的:(jquery,table,function,class,input,server,jQuery,javascript,CSS,Web)