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
| <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> <style type="text/css"> :root { --bg: white; }
body { background-color: var(--bg); } </style> </head> <body> <button type="button" id="red">红</button> <button type="button" id="blue">蓝</button> <button type="button" id="green">绿</button>
<script type="text/javascript"> ["red", "blue", "green"].forEach(value => { const btn = document.getElementById(`${value}`); btn.addEventListener("click", () => { document.body.style.setProperty("--bg", value); }); }); </script> </body> </html>
|