2_demo.html 727 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1{
  10. width: 200px;
  11. height: 200px;
  12. background: red;
  13. left: 100px;
  14. top: 50px;
  15. position: absolute;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="div1"></div>
  21. <button id="btn">点击</button>
  22. <script>
  23. var btn = document.getElementById('btn')
  24. var div1 = document.getElementById('div1')
  25. btn.onclick = function(){
  26. div1.style.background = 'aqua'
  27. div1.style.left = 300 + 'px'
  28. div1.style.top = '200px'
  29. }
  30. </script>
  31. </body>
  32. </html>