如何在 jquery 数据表中使用 ajax 调用来检索数据的下拉框

How to have a dropdown box in a jquery datatable which uses an ajax call to retrieve the data

我想在我的数据的其中一列中有一个下拉框table。就像在 this 示例中一样。但是我的 table 通过 ajax 调用从服务器获取数据来获取数据。这意味着我不能只将选项组放在 td 中。最简单的方法是什么?

SOLUTION

您可以对依赖于行数据的内容使用 columns.defaultContent if content (your dropdown box) doesn't depend on row's data, or columns.render

DEMO

参见 Generated content for a column example for demonstration of columns.defaultContent 选项用法。