答案 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...
});
});