为什么这个按钮不了更换背景色了?
我想用这个脚本实现单击按钮更换背景色,请问为什么实现不了?
<html> <head> <meta http-equiv="Content-Type"content="text/html; charset=gb2312"> <title> 我的嵌入HTML</title></head> <body> <h1>Using Properties</H1> <form> <input type="button" name="red" value="red" onclick='document.bgcolor="red"'> <input type="button" name="yellow" value="yellow" onclick='document.bgcolor="yellow"'> </form> </body> </html>