计算 jquery 中现有选项卡的数量?
我正在使用动态 jQuery 选项卡小部件来添加/删除以编程方式生成的选项卡。
如何通过 jQuery 检查并计算小部件中存在多少个现有选项卡?
我正在使用这段代码,但它不起作用:
$('#container-1 > ul').tabs('add', tabName, name);
var newTab;
if ($('#container-1 > li').size() < 0) {
newTab = $(tabName).css('display', 'block')
} else {
newTab = $(tabName).css('display', 'none');
}
newTab.html('<iframe src="ViewPatient.aspx?pname=' + name
+ '" width="100%" frameborder="0" scrolling="no" height="300"></iframe>');
I'm using a dynamic jQuery tab widget to add/remove tabs generated programmatically.
How do I check through jQuery and count how many existing tabs are present in the widget?
I'm using this code, but it doesn't work:
$('#container-1 > ul').tabs('add', tabName, name);
var newTab;
if ($('#container-1 > li').size() < 0) {
newTab = $(tabName).css('display', 'block')
} else {
newTab = $(tabName).css('display', 'none');
}
newTab.html('<iframe src="ViewPatient.aspx?pname=' + name
+ '" width="100%" frameborder="0" scrolling="no" height="300"></iframe>');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用下面的代码
,其中“#selector”是您用于创建选项卡的选择器。
UPDATE
size()
函数不再存在,现在的解决方案是:Just use the below code
where "#selector" is the selector you have used to create the tabs.
UPDATE
size()
function doesn't exist any more, now the solution is: