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 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效