如何获取表单内所有输入的id?

时间:2010-06-05 17:53:34

标签: jquery arrays forms input

如何在数组中的表单中获取输入元素的所有id?

3 个答案:

答案 0 :(得分:15)

$ids = $('#myform input[id]').map(function() {
  return this.id;
}).get();

答案 1 :(得分:13)

有些事情......

<script src="../../Scripts/jquery-1.4.2.min.js"></script>

<script type="text/javascript">

    $(document).ready(function ()
    {
         // Get all the inputs into an array...
         var $inputs = $('#myForm :input');

         // An array of just the ids...
         var ids = {};

         $inputs.each(function (index)
         {
             // For debugging purposes...
             alert(index + ': ' + $(this).attr('id'));

             ids[$(this).attr('name')] = $(this).attr('id');
         });
    });


</script>

答案 2 :(得分:4)

您可以使用更精确的选择器缩小搜索范围:表单输入具有id

的属性选择器
$(document).ready(function() {
    $('form input[id]').each(function() {
        formId.push(J(this).attr('id'));
});
});