如何为DataTables调用onClick按钮

时间:2016-08-26 14:39:13

标签: jquery datatables

如何为个别列搜索添加onClick按钮(选择输入)DATATABLES,如截图。

enter image description here

1 个答案:

答案 0 :(得分:-1)

最佳做法是将“选择”绑定到“更改”事件,而不是“点击”事件作为点击事件,每次在实际更改值之前单击选择时都会触发。在您选择/更改值时的含义,click事件将触发2x。

因此,在Jquery中,调查生成的HTML并记下您希望在更改值时修改其行为的选择的ID:

$(function ()
{
   $("#select1")
   .unbind("change") // This will remove the current "change" event that DATATABLES assigns to it
   .bind("change", function ()
   {
      // Your javascript in here...
   });
});