1234567891011121314151617181920212223242526272829303132333435 |
- <!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: #000;
- }
- </style>
- </head>
- <body>
- <div id="div1">
- 123
- </div>
- javascript
- <!-- <script>
- console.log(123)
- alert('hahahah')
- var div1 = document.getElementById('div1')
- div1.onclick = function(){
- console.log('000')
- }
- console.log(123)
- </script> -->
- <script src="./1_基础.js"></script>
- </body>
- </html>
|