在jquery数据表中显示html数据

时间:2015-01-16 09:43:01

标签: jquery jquery-datatables

我正在使用以下代码在jquery数据表的最后一列上显示一个按钮。但它显示原始的HTML代码。有没有办法显示按钮而不是HTML代码?非常感谢您的帮助

        $(document).ready(function() {  

             $('#test').html( '<table cellpadding="0" cellspacing="0" border="0" class="display" id="example"></table>' );

            $('#example').dataTable( {
                "data": results,

                "columnDefs": [
                    { "type": "html", 
                      "targets": -1                          
                    } 
                ],
                "columns": [
                    { "title": "A", "data" : "id" },
                    .
                    .
                    .
                    { "title": "B" , "data" : "buttonUrl" },

                ]
            } );                
       } );

1 个答案:

答案 0 :(得分:0)

{ "title": "B" , "data" : "buttoUrl" },

应该是这样的

{ "title": "B" , "data" : "<a href='buttoUrl'>My button</a>" },