在http://docs.jquery.com/UI/Tabs#demo我发现以下关于选项卡向导上的创建事件的描述。对我来说,两种方式都可以将回调函数与create事件相关联。但我相信它们的用法肯定会有所不同。 第一种方法是应该在创建标签时使用,第二种方法是否适用于标签构建后?
//接近1
Supply a callback function to handle the create event as an init option.
$( ".selector" ).tabs({
create: function(event, ui) { ... }
});
//接近2
Bind to the create event by type: tabscreate.
$( ".selector" ).bind( "tabscreate", function(event, ui) {
...
});
答案 0 :(得分:0)
不,他们是等同的。它们都使您能够在标签实例为created时运行代码。我会说第一种方法比第二种方法更常见。虽然jQuery UI团队中的某个人需要更新对已弃用的.bind()
函数的引用。