jquery ui tabs load 事件不触发
我得到了以下非常简单的代码:
function init() {
var articleTabs = $('#articleTabs');
articleTabs.tabs('add',
admin.pageVars.siteRoot + '/articles/themes/' + admin.pageVars.params.id, 'Temas');
articleTabs.tabs({
load : function(event, ui) {
$('.jsonForm').jsonForm();
}
});
}
这成功地将新的选项卡面板添加到现有选项卡控件。然而,一旦激活,加载函数就永远不会触发。
我的错误是什么? (没有 JavaScript 例外)
I have got the following very simple code:
function init() {
var articleTabs = $('#articleTabs');
articleTabs.tabs('add',
admin.pageVars.siteRoot + '/articles/themes/' + admin.pageVars.params.id, 'Temas');
articleTabs.tabs({
load : function(event, ui) {
$('.jsonForm').jsonForm();
}
});
}
This successfully adds a new tab panel to an existing tab control. However upon activation, the load function does never fire.
What is my mistake? (There are no javascript exceptions)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试这样做,因为您在创建选项卡时没有这样做:
这首先是为了安全,但这会绑定到
tabsload
事件 而不是load
选项/处理程序,后者在初始小部件创建后不会设置。Try this instead, since you're not doing it at the time of the tabs creation:
This places it first to be safe, but this binds to the
tabsload
event instead of theload
option/handler, which isn't set after initial widget creation.