簡單的換膚
藍色 紅 綠色
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script> function changeColor(str){ var body = document.getElementById("b"); body.style.backgroundColor = str; } </script> </head> <body id="b" > <button onclick="changeColor('blue')">蓝色</button> <button onclick="changeColor('red')">红色</button> <button onclick="changeColor('green')">绿色</button> </body></html>
以上是如何實現網頁換膚效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!