我创建了一个 Dynatable,我动态地制作了表头。Dynatable 在运行时会出现错误,因为它无法在 HTML 中找到标题。
错误:未捕获的错误:在“thead tr th,td”中找不到任何列标题。如果您的标题行不同,请在表中指定选择器:headRowSelector 选项。
见小提琴:https ://jsfiddle.net/0ycqnaxg/6/
如果 HTML 包含以下内容,它确实会起作用:
工作小提琴:https ://jsfiddle.net/0ycqnaxg/9/
<thead>
<th>FirstName</th>
<th>LastName</th>
</thead>
但是我已经将thead留空以允许动态创建。