在Javascript中调用的HTML复选框onclick [英] HTML checkbox onclick called in Javascript

查看:21
本文介绍了在Javascript中调用的HTML复选框onclick的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在试图弄清楚如何让我的代码的某个部分工作时遇到了一些麻烦.

I am having a bit of trouble trying to figure out how to get a certain part of my code to work.

<input type="checkbox" id="check_all_1" name="check_all_1" title="Select All" onclick="selectAll(document.wizard_form, this);">
<label for="check_all_1" onclick="toggleCheckbox('check_all_1'); return false;">Select All</label>

这是我的 HTML,它可以正常工作(单击文本将单击该框).它的 javascript 非常简单:

This is my HTML which works as it should (clicking the text will click the box). The javascript for it is pretty simple:

function toggleCheckbox(id) {
    document.getElementById(id).checked = !document.getElementById(id).checked;
}

但是,当标签是单击复选框的原因时,我希望对输入进行 onclick.目前 onClick js 没有运行.关于如何做到这一点的建议是什么?我试图将输入的 onclick 添加到标签的 onclick 中,但这不起作用.

However I want the onclick to happen for the input when the label is what makes the checkbox to be clicked. At this current time the onClick js does not go. What is one suggestion on how to do this? I tried to add the onclick of the input to the onclick of the label but that doesn't work.

任何建议/解决方案都会很棒.

Any suggestions/solutions would be wonderful.

推荐答案

如何将checkbox 放入label,制作标签自动为复选框点击敏感",并给复选框一个 onchange 事件?

How about putting the checkbox into the label, making the label automatically "click sensitive" for the check box, and giving the checkbox a onchange event?

<label ..... ><input type="checkbox" onchange="toggleCheckbox(this)" .....> 

function toggleCheckbox(element)
 {
   element.checked = !element.checked;
 }

这将额外捕获使用键盘切换复选框的用户,而 onclick 则不会.

This will additionally catch users using a keyboard to toggle the check box, something onclick would not.

这篇关于在Javascript中调用的HTML复选框onclick的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆