HTML fieldset name 屬性規(guī)定 fieldset 的名稱,name屬性用于引用JavaScript中的元素,或在提交表單后引用表單數(shù)據(jù)。
帶有 name 屬性的 <fieldset>:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <fieldset> name 屬性使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <form action="action_page.php" method="get"> <fieldset name="personalia"> Name: <input type="text" name="username"><br> Email: <input type="text" name="usermail"><br> </fieldset> <button type="button" onclick="form.personalia.style.backgroundColor='yellow'">Change background color of fieldset</button> <input type="submit"> </form> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
除了 Internet Explorer,其他主流瀏覽器都支持 name 屬性。
name 屬性規(guī)定 fieldset 的名稱。
name屬性用于引用JavaScript中的元素,或在提交表單后引用表單數(shù)據(jù)。
屬性是 <fieldset> 標(biāo)簽在 HTML5 中的新屬性。
<fieldset name="text">
值 | 描述 |
---|---|
name | 規(guī)定 fieldset 的名稱。 |