具有不同 ID 的相同数据的动态选项卡
我正在使用 Jquery 开发一个页面。我需要动态生成选项卡(单击“+”选项卡)。所有选项卡的内容都是相同的(很多文本框和文本区域)。现在,当我生成新选项卡时,新选项卡应该包含此内容,但具有不同的 id..(附加计数器即可)。请帮忙。
I am working on a page using Jquery. I have a requirement of generating tabs dynamically(onclicking the '+' tab) .The content of all the tabs are the same(lots of textboxes and textareas). Now as I generate new tabs the new tab should have this content but with different ids..(appending a counter would do).PLease help .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
class='tab-header'
。attr('id','tab'+counter)
clone()
方法创建第 1 点上的模板,并给出类名addClass('tab-content tab-'+counter);
或者只给出 idattr('id','tab-content-'+counter);
class='tab-header'
.attr('id','tab'+counter)
clone()
method and give the classnameaddClass('tab-content tab-'+counter);
or just give it idattr('id','tab-content-'+counter);
http://jsfiddle.net/jesseatkinson/EZgkN/6/
HTML
JS
http://jsfiddle.net/jesseatkinson/EZgkN/6/
HTML
JS