sélecteur de base jquery
1. Les sélecteurs de jquery sont fondamentalement les mêmes que ceux de CSS, ce qui permet aux développeurs familiarisés avec le CSS de maîtriser rapidement
2. La plupart La plupart des sélecteurs CSS peuvent être utilisés directement dans jquery
3. Les sélecteurs de base, également appelés sélecteurs de base, ou sélecteurs d'entrée, sont des sélecteurs simples dont la fonction est de fournir à jquery des
éléments de niveau un. sont utilisés pour le fonctionnement des filtres suivants. Il existe quatre catégories principales : tag, identifiant, classe, *
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>基本选择器</title> <style type="text/css"> table, td { border:1px solid #333; } table { border-collapse: collapse; margin: 30px auto; width: 80%; text-align: center; } table caption { font-size: 1.5em; margin-bottom: 15px; } .bg-orange { font-weight: bolder; color: white; background-color: orange; } </style> </head> <body> <table> <caption>用户信息表</caption> <tr id="title"> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> <tr> <td>01</td> <td>02</td> <td>03</td> <td>04</td> <td>05</td> <td>06</td> <td>07</td> <td>08</td> <td>09</td> <td>10</td> </tr> </table> </body> </html> <script type="text/javascript" src="../js/jquery-3.3.1.js"></script> <script type="text/javascript"> //1. tag标签选择器 // $('td').css('backgroundColor','wheat') //2.id选择器 //把td上的背景去掉,否则会层叠覆盖 $('#title').css('backgroundColor','lightgreen') //3.class类选择器 $('.mark').addClass('bg-orange') //4.*通配选择符 $('tr:nth-child(3) ~ *').css('backgroundColor', 'pink') </script>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!