1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #div1{
- width: 200px;
- height: 200px;
- background: red;
- left: 100px;
- top: 50px;
- position: absolute;
- }
- </style>
- </head>
- <body>
- <div id="div1"></div>
- <button id="btn">点击</button>
- <script>
- var btn = document.getElementById('btn')
- var div1 = document.getElementById('div1')
- btn.onclick = function(){
- div1.style.background = 'aqua'
- div1.style.left = 300 + 'px'
- div1.style.top = '200px'
- }
- </script>
- </body>
- </html>
|