源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> </head> <body> <form action="demo_form.asp" method="get"> <fieldset name="personalia"> 姓名: <input type="text" name="username"><br> Email: <input type="text" name="usermail"><br> </fieldset> <button type="button" onclick="form.personalia.style.backgroundColor='yellow'"> 改变fieldset的背景颜色 </button> <input type="submit"> </form> <p><b>注意:</b> IE不支持 fieldset 的 name 属性 </p> </body> </html>
运行结果