我正在使用here中的数据表。我从我的数据库中创建了一个表。我想以百分比的形式更改每列的宽度。任何相关的代码或示例都可以帮助我吗?
template <int... Js>
void Object::foo() {
std::array<int, sizeof...(Js)> args = {Js...}; // I _think_ this is the correct syntax to dump the parameter pack into an std::array.
if(args.size() > 0 && args[0] == 0) {
// First argument is 0, do whatever.
} else {
// It's not 0, do your other thing.
}
}
答案 0 :(得分:1)
根据他们的documentation,您可以执行以下操作:
$('#example').dataTable( {
"columns": [
{ "width": "60%" },
{ "width": "40%" },
]
});