Jquery 組 checkbox雙向控制與tr變色

來源:互聯網
上載者:User

標籤:lan   query   checked   lin   doctype   nbsp   var   else   head   

 


<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title></title>
<style>

table{
border:1px solid #000;
width: 400px;
text-align: center;
border-collapse: collapse;
}
thead tr{
border: 1px solid #000;
}
.selected{
background:red;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th></th>
<th>姓名</th>
<th>性別</th>
<th>暫住地</th>
</tr>
</thead>
<tbody>
<tr><td><input id="d1" type="checkbox"/></td><td>張山1</td><td>男</td><td>浙江寧波</td></tr>
<tr><td><input id="d2" type="checkbox"/></td><td>張山2</td><td>男</td><td>浙江寧波</td></tr>
<tr><td><input id="d3" type="checkbox"/></td><td>張山3</td><td>男</td><td>浙江寧波</td></tr>
<tr><td><input id="d4" type="checkbox"/></td><td>張山4</td><td>男</td><td>浙江寧波</td></tr>
<tr><td><input id="d5" type="checkbox"/></td><td>張山5</td><td>男</td><td>浙江寧波</td></tr>
<tr><td><input id="d6" type="checkbox"/></td><td>張山6</td><td>男</td><td>浙江寧波</td></tr>
</tbody>
</table>
</body>
<script src="js/jquery-1.11.3.js"></script>
<script>
//jquery有一些弊病,checked這樣的是沒有屬性值的,不能用attr("checked",true)
$(function(){
$(‘tbody>tr‘).click(function(){
var $thisonly=$(this);
if($thisonly.hasClass(‘selected‘)){
$thisonly.removeClass(‘selected‘);
$thisonly.find(‘:checkbox‘)[0].checked=false;
}else{
$thisonly.addClass(‘selected‘).siblings().removeClass(‘selected‘);
$thisonly.find(‘:checkbox‘)[0].checked=true;
$(‘table :checkbox:checked‘).parent().parent().addClass(‘selected‘);
}
}
)
})
</script>
</html>

Jquery 組 checkbox雙向控制與tr變色

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.