使用fancybox,您通常可以使用此功能绑定文档信息:
$("#someID").on('click', function() {
现在我动态打开我的fancybox内容,这是一个例子:
function openFancyBox(id, type)
{
if(type != 'default')
{
CurrentFeaturePositionID = id;
$.fancybox({
type: 'inline',
'content' : $('#' + type + '_fb').html()
});
}
}
如何使用此方法绑定内容?