您能告诉我如何在旧的fancybox 1.3.4上创建一个登录表单 演示是http://fancybox.net/blog
答案 0 :(得分:2)
您提到的示例中的表单是在php中创建的。
Check this link, which include tutorials and samples about how to work with forms in php
对于您提到的从v1.3.x复制/粘贴的脚本,请更改API选项,如下所示:
这一行
'titleShow': false,
应该是
helpers : {
title : null
}
此
'onClosed': function() {
应该是
afterClose : function(){
此
$.fancybox.resize();
应该是
$.fancybox.update();
和这一行
$.fancybox.showActivity();
应该是
$.fancybox.showLoading();
那么它会起作用