Laravel表可排序的更新位置

时间:2018-11-07 18:15:51

标签: javascript laravel html-table

我尝试在表上实现Jquery的可排序,但是当我尝试获取数据时,当我console.log数据时却一无所获。

这是我的桌子:

<table id="players" name="players" class="table table-striped">
    <thead>
    <tr>
        <th>N°</th>
        <th>Nom</th>
        <th>Prénom</th>
        <th>N° licence</th>
    </tr>
    </thead>
    <tbody id="sortable">
    @if($joueurs->count())
        @foreach($joueurs as $joueur)
            <tr>
                <th id="{{$joueur->id}}">{{$joueur->position}}</th>
                <th>{{$joueur->id}} -  {{$joueur->licencie->lb_nom}}</th>
                <th>{{$joueur->licencie->lb_prenom}}</th>
                <th>{{$joueur->licencie->num_licence}}</th>
            </tr>
        @endforeach
    </tbody>
</table>

这是我的脚本:

   $(document).ready(function () {
                $('#sortable').sortable({
                    axis: 'y',
                    update: function (event, ui) {
                        var data = $(this).sortable("serialize");
                        console.log(data);
                    $.ajax({
                        data: data,
                        type: 'POST',
                        url: '../save-order'
                    });
                    }
                });
            });

0 个答案:

没有答案