มาดูแบบที่ 16 กันนะครับ
การเปลี่ยนสีพื้น
คลิ๊กชื่อสีเพื่อเปลี่ยน Background |
<script language="JavaScript"> <!-- hide javascript if (window.focus) { self.focus();} function changeBackground(hexNumber) { document.bgColor=hexNumber;} // done hiding --> </script> <BODY BGCOLOR="#ffff99" TEXTCOLOR="BLUE"> <form method="post" name="background"> <input type="button" value="Violet" onclick="changeBackground('#ffccff')"> <input type="button" value="Green" onclick="changeBackground('#ccffcc')"> <input type="button" value="Blue Sky" onclick="changeBackground('#99ffff')"> <input type="button" value="White" onclick="changeBackground('#ffffff')"> <input type="button" value="White" onclick="changeBackground('#ffffff')"> <input type="button" value="Yellow" onclick="changeBackground('#ffff99')"> <input type="button" value="Pink" onclick="changeBackground('#ffcccc')"> </form> </body> |