2016-08-30 46 views

回答

0

爲什麼要將動作綁定到不同的按鈕上?似乎更實際的是將生成的按鈕移動到另一個容器。例如,您可以在initComplete回調中執行此操作。

移動整個按鈕部到另一個容器

initComplete: function() { 
    $('.dt-buttons').detach().appendTo('#container') 
} 

僅移動colvisGroup按鈕另一個容器(如鏈接到的例如從文檔):

$('.dt-button.buttons-colvisGroup').each(function() { 
    $(this).detach().appendTo('#container') 
})