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事件的主要内容,如果未能解决你的问题,请参考以下文章