반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <script> var change = { bc : function() { document.querySelector("body").style.backgroundColor = "black"; }, cd : function() { document.querySelector("body").style.color = "white"; } } function result() { change.bc(); change.cd(); } </script> <h1>Lorem ipsum dolor sit</h1> <button onclick="result()">something_gonna_change</button> <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora, voluptas!</p> <style> h1 { font-size: 5rem; } p { font-size: 2rem; font-weight: 100; } </style> </body> </html> | cs |
'Javascript' 카테고리의 다른 글
제이쿼리 특정 input 안썼을때 그 부분만 (0) | 2018.05.04 |
---|---|
제이쿼리 input에 아무것도 입력 안했을 때 (0) | 2018.05.04 |
자바스크립트 문제3 (0) | 2018.04.22 |
자바스크립트 문제2 (0) | 2018.04.21 |
자바스크립트 문제1 (0) | 2018.04.20 |