checkbox事件

Posted flymili1017

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkbox事件相关的知识,希望对你有一定的参考价值。

<input id=‘bigclassauthorize‘ type=‘checkbox‘ onclick=‘testClickBigCheckBox()‘/>
<input id=‘smallclassauthorize1‘ type=‘checkbox‘/>

function testClickBigCheckBox()
  var big = document.getElementById(‘bigclassauthorize‘);
  var small1 = document.getElementById(‘smallclassauthorize1‘);
  if(big.checked == true)
    small1.checked = true;
  else
    small1.checked = false;
  

以上是关于checkbox事件的主要内容,如果未能解决你的问题,请参考以下文章

android checkbox 能不能拦截点击事件

js动态生成的checkbox取值和选中事件

wpf点击checkbox触发了两次

解决label 和checkbox点击事件触发两次问题

checkbox事件

vue iview checkbox点击事件