如何更改数据中按钮的文本 table
How can I change text of button inside data table
如何更改默认数据表中按钮的文本 content.I 想要在单击该按钮时更改文本。即,查看查看。我该怎么做?
这可以通过为每个按钮保存 class
并添加点击侦听器来完成:
$('.view-btn').click(function(){
$(this).text("Viewed");
/*
Place your custom code here like Ajax request
*/
});
如何更改默认数据表中按钮的文本 content.I 想要在单击该按钮时更改文本。即,查看查看。我该怎么做?
这可以通过为每个按钮保存 class
并添加点击侦听器来完成:
$('.view-btn').click(function(){
$(this).text("Viewed");
/*
Place your custom code here like Ajax request
*/
});