ホームページ > 記事 > ウェブフロントエンド > Web ページのスキン変更効果を実現する方法
シンプルなスキン変更
青赤緑
<!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>
以上がWeb ページのスキン変更効果を実現する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。