我的页面上有一个jquery datatable,它使用服务器端处理来检索数据。在本例中,其中一列包含html内容,因此我的服务器响应如下所示:
"aaData": [ [1, "aaa", "<span class="myclass">html here</span>" ], ...
我试着
"aoColumnDefs": [ "aTargets":[2], "sType": "html" }
但我仍然看到单元格内容,就好像它是普通字符串一样。我能做什么?
6条答案
按热度按时间55ooxyrt1#
制作了一个工作版本
用jQuery解码回html。
ni65a41a2#
我更新了SamuGG的答案,对于新的数据表版本:
u4dcyp6a3#
你只需要在rawColumns()或make(true)之前添加下面一行
使用此方法并传递列名
nom7f22z4#
将renderAsHtml作为函数引用传递给fnRender。这也是作品
4ioopgfo5#
这是我在datatable列中呈现HTML标签的方式:
0qx6xfy66#
在render函数上添加.text()