单击标签时选中窗体复选框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单击标签时选中窗体复选框相关的知识,希望对你有一定的参考价值。

this is a way to deal with the fact that we can't reliably make checkboxes look larger on forms. So instead, we surround the form with a colored div, and set it up so that when the user clicks on the label next to the checkbox it checks the box.
  1. <script>
  2. function radioME(){
  3. uncheckALL("j",3)
  4. arguments[0].checked=true
  5. return true
  6. }
  7.  
  8. function uncheckALL(){
  9. var currentId=0;
  10. for(currentId=0;currentId<arguments[1];currentId++){
  11. document.getElementById(arguments[0]+currentId).checked=false
  12. }
  13. }
  14. </script>
  15.  
  16. <div style="background-color: rgb(255, 255, 204); padding: 5px; font-size: 12px; border: thin solid rgb(102, 136, 0);">
  17. <label>
  18. <input type="checkbox" onclick="radioME(this)" id="j0" value="1" name="groups_KEY658_checkbox"/>
  19. <strong>Vote for Dan Seals</strong>
  20. </label>
  21. </div>

以上是关于单击标签时选中窗体复选框的主要内容,如果未能解决你的问题,请参考以下文章

Jquery Fancyform 和 IE10:单击标签时未选中复选框

Excel 控件中的checkbox 如何被选中? 为啥不是像"窗体"中的复选框一样,拉出来,直接用鼠标单击就能选中了

角度材料复选框标签的就地编辑

delphi 一个窗体添加多组单选框问题

如何检查单击时是不是选中了复选框?

如何使用 VBA 从 Excel 用户窗体中读取复选框的值