1. スタイル
$ (function(){
$('tr:odd').addClass("odd");
$('tr:even').addClass("even") ;
});
テーブルの先頭はカウントしません
$(function(){
$('tbody>tr:odd').addClass("odd");
$('tbody> ;tr:even').addClass("even");
2. ラジオ ボタン コントロールの行の強調表示
$('tobdy>tr').click(function(){
$(this) .addClass('selected')
.siblings() .removeClass('selected')
.end() // オブジェクトを再度返します
.find(':radio').attr('checked ',true);
});
3.
コードをコピーします。 コードは次のとおりです: $('tobdy>tr').click(function(){ if( $(this).hasClass('selected') ) { // 選択されたハイライト スタイルがあるかどうかを判断します
$(this).removeClass('selected')
.find(':checkbox').attr('checked',false); else{
$(this).addClass('selected ')
.find(':checkbox').attr('checked',true);
}
4. テーブルコンテンツのフィルタリング
コードをコピーします
コードは次のとおりです: