如何使用 jquery 数据表插件删除当前行
我在表中有一个带有按钮的列,我正在使用 jQuery 数据表插件。这些按钮显示“删除”,其想法是,当您单击该按钮时,它会删除表中的当前行。
当我调用 fnDeleteRow 时,它似乎第一次工作,但该行没有任何进一步的时间,因此看起来它没有真正正确删除该行。
I have a column with buttons in a table I'm using jQuery datatable plugin. The buttons say "Remove" and the idea is that when you click on that button it deletes the current row in the table.
When I call fnDeleteRow
it seems to work the first time but no any further time for that row so it looks like its not really deleting the row properly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试一下:
如果不起作用,请检查以下示例
Try this:
If it doesn't work, check the following example
假设您附加了一个在用户单击按钮时调用的函数。该功能将是这样的
Let's say you attached a function to be called when the user clicks on the button. The function would be something like this
这个怎么样:
How about this:
来自此页面:
from this page:
这对我来说就是这样的。在文档就绪函数中,我将 HTML 表的转换版本分配给一个变量,当单击其中的按钮时,我使用 JQuery 遍历父级/子级,并将获得的行作为参数发送到库的 fnDeleteRow() 函数。
这是库函数的注释。以及图书馆中提到的一个例子。
This is how it works for me. In document ready function I assign converted version of HTML table to a variable and when a button in the is clicked I go through parents/childs with JQuery and send the row you get as a parameter to the library's fnDeleteRow() function.
Here's is the comments from the library function. And an example that's mentioned in library.