如果你需要标识或引用某个特定的 <fieldset>,可以考虑为其添加一个唯一的 id 属性。例如:
<form>
<fieldset id="userDetailsFieldset">
<legend>用户信息</legend>
<label for="username">用户名:</label>
<input type="text" id="username" name="username">
<br>
<label for="password">密码:</label>
<input type="password" id="password" name="password">
</fieldset>
<br>
<input type="submit" value="提交">
</form>
在这个例子中,<fieldset> 元素被赋予了 id="userDetailsFieldset",使其在整个文档中具有唯一标识符。这样,你可以通过 JavaScript 或 CSS 等方式引用或操作这个特定的 <fieldset> 元素。
转载请注明出处:http://www.zyzy.cn/article/detail/3988/HTML