如何在HTML中设置元素的名称?

使用 name属性设置元素的名称。您可以将其与以下HTML元素一起使用:<button>,<fieldset>,<form>,<iframe>,<input>,<map>,<meta>,<object>,<output>,<param>, <选择>,<文本区域>

示例

您可以尝试运行以下代码以实现 name属性-

<!DOCTYPE html>
<html>
   <body>

      Subject: <input type = "text" name = "sub" spellcheck = "true">
      <p>Add an incorrect spelling for a word above and see what happens.</p>

      <p contenteditable = "true" spellcheck = "true">This is an editable conttent, with a spelling mistake. Click to edit.</p>

   </body>
</html>