HTML DOM 单选按钮类型属性


Input Checkbox 类型属性返回/设置 Input Checkbox 的类型。

语法

以下是语法 −

  • 返回字符串值
inputCheckboxObject.type
  • type 设置为字符串值
inputCheckboxObject.type = stringValue

字符串值

此处,"stringValue" 可以是以下内容 -

stringValue详情
checkbox它定义输入类型是复选框
radio它定义输入类型是单选按钮
text它定义输入类型是文本

实例

让我们看一个 Input Checkbox type 属性的实例 −

 实时演示

<!DOCTYPE html>
<html>
<head>
<title>Type Attribute of Checkbox</title>
</head>
<body>
<form id="Form">
<div>
Other: <input id="formCheckbox" type="checkbox" name="formCheckbox">
</div>
</form>
<button onclick="changeType()">Change type of input</button>
<div id="displayDiv"></div>
<script>
   var typeOfInput = document.getElementById("formCheckbox");
   var displayDiv = document.getElementById("displayDiv");
   displayDiv.textContent = 'Type of Input: ' + typeOfInput.type function changeType(){
      if(typeOfInput.type == 'checkbox'){
         typeOfInput.type = 'text' displayDiv.textContent = 'Type of Input: ' + typeOfInput.type
      }
   }
</script>
</body>
</html>

输出

这将产生以下输出 −

单击“更改输入类型”按钮之前 −

单击“更改输入类型”按钮之后 −

更新于: 30-Jul-2019

86 次查看

开启你的 职业生涯

完成课程,获取证书

立即开始
广告