Advertisement
Mirelawiel

JQuery2

Feb 19th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.05 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.  
  11. <h1>EXERCICE 1 : Manipulation de JQUERY</h1>
  12.  <button type ="button" onclick="reset()">reset</button>
  13.  <button type ="button" onclick="ajoute()">add text</button>
  14.  <button type ="button" onclick="duplique()">clone</button>
  15.  <button type ="button" onclick="wrap()">wrap</button>
  16.  <button type ="button" onclick="alterne()">odd green</button>
  17.  
  18.  <br><br>
  19.  
  20.  
  21.  <p>Contenu d'origine</p>
  22.  
  23.  <script type="text/javascript">
  24.     function ajoute(){
  25.         $("p:first").append("...Contenu ajoute");
  26.     }
  27.  
  28.     function duplique(){
  29.         $("p:first").clone()
  30.         .insertAfter("p:last")
  31.         .css("backgroundColor", "lightblue");
  32.     }
  33.  
  34.     function alterne(){
  35.         $("p:odd").css("backgroundColor","green")
  36.         .css("color","white");
  37.     }
  38.  
  39.  
  40.  
  41.  
  42.  </script>
  43.  
  44.  
  45.  <h1>EXERCICE 2 : AJAX/JQUERY</h1>
  46.  
  47. <script type="text/javascript">
  48.    
  49. </script>
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement