JQuery Datatables Add new Row

后端 未结 3 1458
野趣味
野趣味 2021-02-06 11:22

I\'m creating a registration page where someone can register up to 20 other people if they wanted to. So I have these text boxes:

First Name: 
3条回答
  •  生来不讨喜
    2021-02-06 12:05

    $(document).ready(function() {
        $('#example').dataTable();
        $('#addbtn').click(addrow);
    } );
    
    function addrow() {
        $('#example').dataTable().fnAddData( [
            $('#fname').val(),
            $('#lname').val(),
            $('#email').val() ] );
    
    }
    

    you need to call the addrow() in the button click.

    Add this button in your html code

    
    

提交回复
热议问题