好的,我正在使用像
这样的东西 $.fancybox( $("#savesofrm") );
打开一个包含一些基本(textarea等)表单元素的div。有用。
我想传递更多选项,例如helpers
。不确定如何。想法?
答案 0 :(得分:0)
你可以做到
$.fancybox($("#savesofrm"),{
// add options here
helpers: {
title : { type : "inside" },
thumbs : {
width: 50,
height: 50
}
}
});