将内容添加到 JQuery 中生成的选项卡
我将其添加到现有的 JQuery 选项卡中:
function createTab(name) {
// this will add a tab via the standard method
$("#tabs").tabs("add", "#fragment-4", name);
$("#fragment-" + name).css("display", "block");
}
我的问题是,允许我在新创建的选项卡中创建内容的语法是什么?
I added this to my already existing JQuery tab:
function createTab(name) {
// this will add a tab via the standard method
$("#tabs").tabs("add", "#fragment-4", name);
$("#fragment-" + name).css("display", "block");
}
my question is, what is the syntax that allows me to create content inside the newly created tab?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将内容添加到您要添加的 div 中即可:
Just add the contents to the div you are adding:
您还可以使用模板插件。
然后在选项卡中的 .add 事件内,您可以将其附加到当前选项卡
You can also use the template plugin.
Then inside the .add event in tabs, you can append it to the current tab