jQuery追加克隆表

时间:2016-03-16 07:50:25

标签: jquery html point-of-sale jquery-append

我想制作这样简单的POS:

screenshot

  1. 如何使用jQuery追加克隆元素(并制作新的div / id)
  2. 这是我的:

    screenshot2

    <div class="row"><a class="offset-s6 waves-effect waves-dark btn blue"><i class="mdi-content-add"></i></i></a> <table class="table table-hover"> <thead> <tr> <th>Produk</th> <th>Jumlah</th> <th>Harga</th> <th>Stok</th> <th>Total</th> <th>Delete</th> </tr> </thead> <tbody> <tr> <th> <select style="width: 100%" class="select2 js-example-responsive"> <optgroup label="Baut Macam"> <option value="baut-1">Baut Mur</option> <option value="baut-2">Mur Baut</option> <option value="baut-3">Tang</option> <option value="baut-4">Tong</option> <option value="baut-5">Teng</option> </optgroup> <optgroup label="Alat Berat"> <option value="ab1">Palu</option> <option value="ab2">Linggis</option> <option value="ab3">Linggis</option> <option value="ab4">skrup</option> </optgroup> </select> </th> <td> <div class="input-field"> <input type="number" name="quantity" min="1" max="5"> </div> </td> <td>?</td> <td>?</td> <td>?</td> <td><a class="waves-effect waves-blue btn-flat"><i class="mdi-action-delete"></i></a> </td> </tr> </tbody> </table> </div>

    1. 如何实时计算价格
    2. 谢谢:)

1 个答案:

答案 0 :(得分:0)

1 - 克隆并附加元素使用:

$('tbody').find('tr').clone().appendTo($('tbody'));

2 - 计算价格

$('input').on('input', functoin(e) {
    // your code to calculate and put result where you need it.
});

我认为这段代码不会马上工作。试着给你一个线索。

根据您的情况进行调整。