0

我正在使用 Isocra 的 tableDnD jquery 插件。到目前为止它工作正常。现在我想在 onDrop 函数中提交我的表单,比如

$("#myTable").tableDnD({
  onDrop: function(table, row) {   
    var input = document.createElement('input');
     input.name ='order';
     input.value = $.tableDnD.serialize();  
     input.type= 'hidden';
     $("#myformular").append(input);    

         $("#myformular").submit()
     }
 });    

但是表格没有提交。有人知道可能是什么问题吗?

表单的 id 是正确的。

4

0 回答 0