et

英[ənd] 美[ənd, ən,ænd]

conj Et;

n. Soi; personne; intérêt personnel

même; célibataire

vt pour provoquer la consanguinité

.

Méthode jquery et Self() syntaxe

Fonction : La méthode add() ajoute l'ensemble d'éléments précédent de la pile à l'ensemble actuel.

Syntaxe : .andSelf()

Méthode jquery et Self() exemple

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
  p, div { margin:5px; padding:5px; }
  .border { border: 2px solid red; }
  .background { background:yellow; }
</style>
</head>
<body>
  <div>
    <p>First Paragraph</p>
    <p>Second Paragraph</p>
  </div>
<script>
    $("div").find("p").andSelf().addClass("border");
    $("div").find("p").addClass("background");
</script>
</body>
</html>
Exécuter l'instance »

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne