Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我正在使用类似的东西
$.fancybox( $("#savesofrm") );
打开一个包含一些基本(文本区域等)表单元素的 div。有用。
我想传递更多选项,例如helpersin。不知道如何。想法?
helpers
你可以做
$.fancybox($("#savesofrm"),{ // add options here helpers: { title : { type : "inside" }, thumbs : { width: 50, height: 50 } } });