How do I make a checkbox toggle from clicking on the text label as well?

前端 未结 8 1954
一生所求
一生所求 2020-12-15 03:38

Checkboxes in HTML forms don\'t have implicit labels with them. Adding an explicit label (some text) next to it doesn\'t toggle the

8条回答
  •  借酒劲吻你
    2020-12-15 04:17

    If you correctly markup your HTML code, there is no need for javascript. The following code will allow the user to click on the label text to tick the checkbox.

    
    
    

    The for attribute on the label element links to the id attribute on the input element and the browser does the rest.

    This has been testing to work in:

    • IE6
    • IE7
    • Firefox

提交回复
热议问题