Home > Web Front-end > JS Tutorial > body text

What are the techniques for operating JQuery tables?

php中世界最好的语言
Release: 2018-04-24 13:50:13
Original
1374 people have browsed it

This time I will bring you JQueryWhat are the techniques for operating the table, what are the precautions for operating the JQuery table, the following is a practical case , let’s take a look.

1. Add styles to the odd and even rows of the table respectively

$(function(){ 
$('tr:odd').addClass("odd"); 
$('tr:even').addClass("even"); 
});
Copy after login

Not counting the header of the table

$(function(){ 
$('tbody>tr:odd').addClass("odd"); 
$('tbody>tr:even').addClass("even"); 
});
Copy after login

2. The radio button controls the highlighting of rows

$('tobdy>tr').click(function(){ 
$(this).addClass('selected') 
.siblings().removeClass('selected') 
.end() // 重新返回该
对象
.find(':radio').attr('checked',true); 
});
Copy after login

3. Check boxControl row highlighting

$('tobdy>tr').click(function(){ 
if( $(this).hasClass('selected') ){ // 判断是否有selected高亮样式 
$(this).removeClass('selected') 
.find(':checkbox').attr('checked',false); 
}else{ 
$(this).addClass('selected') 
.find(':checkbox').attr('checked',true); 
} 
});
Copy after login

4. Table content filtering

$(function(){ 
$('table tbody tr').hide() 
.filter(":contains(李)").show(); 
});
Copy after login

I believe you have mastered the method after reading the case in this article , for more exciting content, please pay attention to other related articles on the php Chinese website!

Recommended reading:

JQuery dynamically operates table rows and adds events to new rows

jQuery implements chapter anchors Back to top Effect

The above is the detailed content of What are the techniques for operating JQuery tables?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!