empty
English [ˈempti] US [ˈɛmpti]
adj Vide, vide, vide; oisif, inefficace, futile; mots ou actions ennuyeux et vides
vt .(faire) devenir vide, faire. .. vide; libre...
Devenir vide; couler vide
Voiture vide
.jquery sélecteur vide syntaxe
Fonction : : le sélecteur vide sélectionne les éléments vides. Un élément vide est un élément qui ne contient aucun élément enfant ni texte.
Syntaxe : $(":vide")
jquery sélecteur vide exemple
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(":empty").css("background-color","#B2E0FF"); }); </script> </head> <body> <html> <body> <h1>Welcome to My Web Page</h1> <table> <tr> <th>Id</th> <th>LastName</th> <th>FirstName</th> <th>Address</th> <th>City</th> </tr> <tr> <td>1</td> <td></td> <td>John</td> <td>Oxford Street</td> <td></td> </tr> <tr> <td>2</td> <td>Bush</td> <td>George</td> <td></td> <td>New York</td> </tr> <tr> <td>3</td> <td>Carter</td> <td>Thomas</td> <td>Changan Street</td> <td>Beijing</td> </tr> <tr> <td>4</td> <td>Obama</td> <td></td> <td>Pennsylvania Avenue</td> <td>Washington</td> </tr> </table> </body> </html> </body> </html>
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne