目录

如何 - 选中复选框时显示文本


使用 JavaScript 检查复选框是否已选中。


选中复选框时显示一些文本:


检查复选框是否被选中

步骤1)添加HTML:

示例

Checkbox: <input type="checkbox" id="myCheck" onclick="myFunction()">

<p id="text" style="display:none">Checkbox is CHECKED!</p>

步骤 2) 添加 JavaScript:

示例

function myFunction() {
  // Get the checkbox
  var checkBox = document.getElementById("myCheck");
  // Get the output text
  var text = document.getElementById("text");

  // If the checkbox is checked, display the output text
  if (checkBox.checked == true){
    text.style.display = "block";
  } else {
    text.style.display = "none";
  }
}
亲自试一试 »