语义UI标签-是标签吗?

时间:2019-01-19 11:58:37

标签: semantic-ui

我正在使用语义UI选项卡。

我想确定一个选项卡是否已经存在,如果不存在,那么我将以编程方式创建它。创建工作正常。问题是如何检测选项卡是否已经存在。似乎有一个用于此目的的API,但我不知道如何驱动它。

语义UI选项卡API具有以下模式:

$('.foo').tab('operation', argumentOne, argumentTwo)

不同的操作采用不同数量的参数。 'is tab'操作记录为不带任何参数。因此,我推断我需要调整选择器。我知道我标签的元素ID,因此我可以尝试使用“#'+ id。我尝试执行的任何操作都不会产生肯定的答案。

 var res = ('#'+ theId).tab('is tab'); // always false

 var res = ('.tabular.menu .item).tab('is tab'); 
 // yields an array of false values, the length of the array 
 // being the same as the number of tabs

建议。

0 个答案:

没有答案