dongshao1021 2016-10-17 04:39
浏览 37
已采纳

如何将表中的项放入数组jquery中

Let's suppose I have a table that is iterated through foreach loops and the items are coming from database.

for instance,

<table>
    <?php while($row = $result->fetch_assoc()){?>
    <tr>
      <td><?php echo $row['id'] ?></td>
      <td><?php echo $row['name'] ?></td>
      <input type="button" name="add" />
    </tr>
    <?php }?>
</table>

Now there is a button in every row that would be iterated and what I want that when I click add that specific item should be added in an array or a list. It would allow me to add as many items as I want and then at the end I would insert them in database with just one click.

I studied jQuery in class but couldn't learn much. Since it is client-side scripting language thus this thing would only be achieved by this I guess.

Can someone care to help? Thank you :)

  • 写回答

1条回答 默认 最新

  • dounao4179 2016-10-17 04:57
    关注

    check my example. run the snippet for testing. u will get the array of ids on every click on add button. then u can just add another button to submit, and on the click event of that button u can just make an ajax call to your php file with the array as data.

    $(document).ready(function(){
      var array_ids = [];
      $('.add_button').click(function(){
        array_ids.push($(this).parent().siblings('.row_id').html().trim());
        alert(array_ids);
      });
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <table border="1">
        <tr>
          <td class="row_id">1</td>
          <td>one</td>
          <td><button class="add_button">Add</button></td>
        </tr>
      <tr>
          <td class="row_id">2</td>
          <td>two</td>
          <td><button class="add_button">Add</button></td>
        </tr>
        <tr>
          <td class="row_id">3</td>
          <td>three</td>
          <td><button class="add_button">Add</button></td>
        </tr>
      <tr>
          <td class="row_id">4</td>
          <td>four</td>
          <td><button class="add_button">Add</button></td>
        </tr>
    </table>

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 蓝桥oj3931,请问我错在哪里
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染