0

好的,我正在使用类似的东西

 $.fancybox(  $("#savesofrm") ); 

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

我想传递更多选项,例如helpersin。不知道如何。想法?

4

1 回答 1

0

你可以做

$.fancybox($("#savesofrm"),{
 // add options here
 helpers: {
   title  : { type : "inside" },
   thumbs : {
     width: 50,
     height: 50
   }
 }
}); 
于 2012-09-13T07:16:11.400 回答