有没有办法像jQuery一样通过选择器获取Tabulator对象?

时间:2018-12-20 14:14:28

标签: tabulator

我们可以创建对象,然后通过* spec: Forbidden: pod updates may not change fields other than `spec.containers[*].image`, `spec.initContainers[*].image`, `spec.activeDeadlineSeconds` or `spec.tolerations` (only additions to existing tolerations) 变量来引用它。像这样:

spec.volumes

但是有一种方法可以通过选择器来获取table对象,就像在jQuery中一样:

var table = new Tabulator("#example-table", { ... } );

不会构造新的Tabulator,而仅返回现有对象。

1 个答案:

答案 0 :(得分:1)

如果您想在制表器4.0及更高版本中使用jQuery,则只需使用 jQuery包装器

$("#example-table").tabulator( ... )

有关此功能的完整指南,请参见Here