我正在组合两个jQuery插件,Fancybox和Embeddy(比如jQuery oembed)。
在Fancybox onStart事件中,我得到了链接的url,打电话给oembed服务,并将响应(视频)推回到灯箱中。
好吧,至少这是我想要的:)我正在从oembed提供商那里得到回复,但我认为在发生这种情况时,onStart功能已经完成。
代码:
$('a').fancybox({
type: 'html',
onStart: function(selectedArray, selectedIndex, selectedOpts) {
var url = selectedArray[selectedIndex].href;
$.embedly(url, {
success: function (oembed, dict) {
selectedOpts.content = oembed.html;
}
});
}
});
我似乎需要同步处理呼叫?
谢谢
Ben
试试这个
$('a').each(function(i, a){
var url = a.href, $a = $(a);
$.embedly(url, {
success: function (oembed, dict) {
$a.fancybox({
type: 'html',
onStart: function(selectedArray, selectedIndex, selectedOpts) {
selectedOpts.content = oembed.html;
}
});
}
}
});
});