【发布时间】:2012-09-06 13:04:05
【问题描述】:
新手-我想用这些复选框做两件事:
- 使用 TAB 键来切换选项,这部分有效
- 当我通过选项 TAB 时,我想按 ENTER 键来选中该复选框,这部分不起作用
以下是示例代码。我将复选框作为一个组使用。
大家有什么建议吗?
<!doctype html>
<head>
<title>test Radio buttons checkbox</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('input:checkbox[name=Colors]').keypress(function(event) {
var keycode = (event.keyCode ? event.keyCode : event.which);
if (keycode == 13) {
Checkbox_to_RadioButton(this);
alert("Enter key was pressed");
}
event.stopPropagation();
});
$('input:checkbox[name=Colors]').click(function(){
Checkbox_to_RadioButton(this);
});
});
function Checkbox_to_RadioButton(box){
$('input:checkbox[name=' + box.name + ']').each(function(){
if (this != box)
$(this).attr('checked', false);
});
}
</script>
</head>
<body>
<h1>test Radio buttons checkbox</h1>
<form name="form1">
<input type="text" id="dname" name="dname"><br>
<input type="checkbox" id="Colors" name="Colors" value="Red" />Red<br />
<input type="checkbox" id="Colors" name="Colors" value="Blue" />Blue<br />
<input type="checkbox" id="Colors" name="Colors" value="Green" />Green<br />
<input type="checkbox" id="Colors" name="Colors" value="Yellow" />Yellow<br />
<br>
</form>
</body>
</html>
【问题讨论】:
-
按空格不是一个选项?如果没有,请尝试使用
keydown事件而不是keypress。 -
请注意,可以使用空格选择复选框。 stackoverflow.com/a/35423812/1343917
标签: jquery forms checkbox enter