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这个复选框?

参考技术A 有了ID最好取了啊 $("#a1")这样的就可以了啊。再不行$(":checkbox[id='a1']")本回答被提问者采纳 参考技术B cebrb

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"的元素怎么获取这个复选框?的主要内容,如果未能解决你的问题,请参考以下文章

jQuery常用的API 后续

快速上手jQuery:属性操作文本属性值元素操作位置尺寸操作

jquery的一些常用方法

1. jQuery中的DOM操作

jquery遍历文档元素问题

jquery向元素里添加元素的问题