如何将辅助工具添加到fancybox

时间:2012-09-13 06:59:46

标签: jquery fancybox fancybox-2

好的,我正在使用像

这样的东西
 $.fancybox(  $("#savesofrm") ); 

打开一个包含一些基本(textarea等)表单元素的div。有用。

我想传递更多选项,例如helpers。不确定如何。想法?

1 个答案:

答案 0 :(得分:0)

你可以做到

$.fancybox($("#savesofrm"),{
 // add options here
 helpers: {
   title  : { type : "inside" },
   thumbs : {
     width: 50,
     height: 50
   }
 }
});