carious
<input type="text" onchange="changeOrder(this,{{ $category->cate_id }})" class="order" value="{{ $category->cate_order }}"> </td>
function changeOrder(obj,cate_id){
    var cate_order=$(obj).val();
    $.post("{{ url(\'admin/category/changeorder\') }}",{\'_token\':"{{ csrf_token() }}",\'cate_id\':cate_id,\'cate_order\':cate_order},function(data){

    });
  }

分类:

技术点:

相关文章:

  • 2021-12-18
  • 2021-11-03
  • 2021-10-17
  • 2021-09-11
  • 2021-12-08
  • 2021-09-20
  • 2021-11-24
  • 2021-09-11
猜你喜欢
  • 2021-11-24
  • 2021-12-28
  • 2021-12-10
  • 2021-10-17
  • 2021-10-02
相关资源
相似解决方案