HTML DOM Input Checkbox name 属性
HTML DOM Input Checkbox name 属性返回一个字符串,它是 input checkbox 的 name 属性的值。用户还可以将其设置为一个新的字符串。
语法
以下是语法 −
- 返回字符串值
inputCheckboxObject.name
- 将name 属性设置为字符串值
inputCheckboxObject.name = ‘String’
示例
让我们看一个 Input Checkbox name 属性的示例 −
<!DOCTYPE html> <html> <head> <title>Name Attribute of Checkbox</title> </head> <body> <form id="Form"> <div> Enable new name: <input id="formID" type="checkbox" name="formID"> </div> </form> <button onclick="getFormID()">Change Name Attribute</button> <div id="nameAttr"></div> <script> function getFormID(){ var oldNameAttr = document.getElementById("formID"); var newNameAttr = document.getElementById("nameAttr"); if(oldNameAttr.checked == true){ oldNameAttr.name = 'newFormID'; newNameAttr.textContent = 'Updated value of name attribute: '+oldNameAttr.name; } else { newNameAttr.textContent = 'Check the checkbox'+ ', current value of name attribute: '+oldNameAttr.name ; } } </script> </body> </html>
输出
这将产生以下输出 −
在勾选“启用新名称”复选框之前 −
勾选“启用新名称”复选框之后 −
广告