jQuery - Méthode css (name)

La description

le css( name ) La méthode renvoie une propriété de style sur le premier élément correspondant.

Syntaxe

Voici la syntaxe simple pour utiliser cette méthode -

selector.css( name )

Paramètres

Voici la description de tous les paramètres utilisés par cette méthode -

  • name - Le nom de la propriété à accéder.

Exemple

Voici un exemple simple montrant l'utilisation de cette méthode -

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
			
            $("div").click(function () {
               var color = $(this).css("background-color");
               $("#result").html("That div is <span style = 'color:" + 
                  color + ";'>" + color + "</span>.");
            });
				
         });
      </script>
		
      <style>
         div { width:60px; height:60px; margin:5px; float:left; }
      </style>
   </head>
	
   <body>
      <p>Click on any square:</p>
      <span id = "result"> </span>
		
      <div style = "background-color:blue;"></div>
      <div style = "background-color:rgb(15,99,30);"></div>
      <div style = "background-color:#123456;"></div>
      <div style = "background-color:#f11;"></div>
   </body>
</html>

Cela produira le résultat suivant -

jquery-css.htm