本文將和大家JS的一個網頁製作小技巧,應用在很多地方,透過JS改變HTML頁面的顏色,有興趣的學習下,希望能幫助到大家。
我們先來看下具體的示範效果圖
#以下是完整的HTML頁面程式碼,大家可以測試下。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .big_box{ width: 500px; height: 500px; border: 1px solid black; } .big_box input{ margin-left: 60px; } </style> <script> function Change_red(){ var Red=document.getElementById("change_style"); Red.style.backgroundColor="red"; } function Change_blue(){ var Blue=document.getElementById("change_style"); Blue.style.backgroundColor="blue"; } function Change_green(){ var Green=document.getElementById("change_style"); Green.style.backgroundColor="green"; } </script> </head> <body> <p class="big_box" id="change_style"> <input type="button" value="变为红色" onclick="Change_red()"> <input type="button" value="变为蓝色" onclick="Change_blue()"> <input type="button" value="变为绿色" onclick="Change_green()"> </p> </body> </html>
以上是JS實作頁面顏色改變程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!