Advertisement
Mirelawiel

JQuery

Feb 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.      <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.j
  6. s"></script>
  7.     <title>EXERCICE 1 : Manipulation de JQUERY</title>
  8. </head>
  9. <body>
  10.  <button type ="button" onclick="reset()">reset</button>
  11.  <button type ="button" onclick="ajoute()">add text</button>
  12.  <button type ="button" onclick="duplique()">clone</button>
  13.  <button type ="button" onclick="wrap()">wrap</button>
  14.  <button type ="button" onclick="oddGreen()">odd green</button>
  15.  
  16.  <br><br>
  17.  
  18.  <p>Contenu d'origine</p>
  19.  
  20.  <script type="text/javascript">
  21.     function ajoute(){
  22.         $("p:first").append("...Contenu ajoute");
  23.     }
  24.  
  25.     function duplique(){
  26.         $("p:first").clone()
  27.         .insertAfter("p:last")
  28.         .css("backgroundColor", "lightblue");
  29.     }
  30.  
  31.  
  32.  
  33.  
  34.  </script>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement