Advertisement
Guest User

Билет 12

a guest
Jun 27th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>JavaScript</title>
  6. </head>
  7. <body>
  8.     <div>1</div>
  9.     <div>2</div>
  10.     <div>3</div>
  11.     <div>4</div>
  12.     <div>5</div>
  13.     <button id="set">Обвести первый и последний блоки</button>
  14.     <script src="jquery.min.js"></script>
  15.     <script>
  16.         $('#set').click(function(){
  17.             var div1 = $("div").first().html();
  18.             var div2 = $("div").last().html();
  19.             $("div").first().html(div2);
  20.             $("div").last().html(div1);
  21.         });
  22.     </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement