📜  kak ispolzovat html 复选框 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:09.496000             🧑  作者: Mango

代码示例2
function checkFluency()
{
  var checkbox=document.getElementById('fluency');
  if(checkbox.checked!=true)
  {
    alert("you need to be fluent in English to apply for the job");
  }
}