jquery td元素里面的input type="checkbox" id ="a1"的元素怎么获取这个复选框?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery td元素里面的input type="checkbox" id ="a1"的元素怎么获取这个复选框?相关的知识,希望对你有一定的参考价值。
<td><input type="checkbox" id ="a1"/></td>
<td><input type="checkbox" id ="a3"/></td>
<td><input type="checkbox" id ="a3"/></td>
如何获取a1这个复选框?
Jquery 实现input回车时跳转到下一个input元素
/** * 回车时跳转到下一个元素 * @Author HTL * @DateTime 2016-12-30T11:33:25+0800 * @param {[type]} $input [INPUT 元素列表] * @return {[type]} [description] */ function keydown_to_tab($input){ if(!$input) $input = $(‘input:text:not(:disabled)‘); $input.bind("keydown", function(e) { var n = $input.length; if (e.which == 13){ e.preventDefault(); //Skip default behavior of the enter key var nextIndex = $input.index(this) + 1; if(nextIndex < n) $input[nextIndex].focus(); else $input[nextIndex-1].blur(); } }); }
参考:
以上是关于jquery td元素里面的input type="checkbox" id ="a1"的元素怎么获取这个复选框?的主要内容,如果未能解决你的问题,请参考以下文章