我正在使用jquery数据表并且我试图添加一个" id"已经有一个"类"选择器。
"sDom": '<"account-list-header" Cf>tip'
以上代码有class="account-list-header"
我尝试过这样做:"sDom": '<"account-list-header" Cf><"#top">tip',
,但它会创建一个sepearte div并且不会附加&#34; id&#34;与account-list-header
相同。
如何使用sDom实现这一目标?有什么想法吗?
由于
答案 0 :(得分:0)
我遇到了同样的问题。我用解决方法解决了这个问题:
sDom: '<"account-list-header">',
fnInitComplete: function() {
$('#account-list-header').addClass('add your classes here');
}
希望这有帮助。
顺便说一句,你的问题与此重复: Jquery datatable sdom how to define id and class both答案 1 :(得分:0)
尝试以下方法:
"sDom": '<"#myId.myClass" Cf>tip'
......或者在你的情况下:
"sDom": '<"#top.account-list-header" Cf>tip'
解决方案被描述为on the official homepage,但是如果没有示例则非常混乱