我在我的网站(http://www.jakelazaroff.com/#contact)上有一个表格,我用jQuery提交。表单成功提交时的回调函数应该使表单逐渐消失;但是,出于某种原因,这仅适用于某些浏览器/操作系统组合。现在,兼容性列表如下:
WORKS
o firefox 3.0, xp
o firefox 3.0.14, vista
o firefox 3.0.15, vista
o firefox 3.5.5, os 10.6.2
v chrome 4.0.249.30, os 10.6.2
o chrome 3.0.195.33, w7
DOESNT WORK
o safari 4.0.4, os 10.6.2
o safari 4.0.3, os 10.5.8
o firefox 3.5.5, w7
o firefox 3.5.5, os 10.5.8
o chrome 3.0.195.33, vista
o = unreproduced, v = reproduced, x = conflicting
...这是一个奇怪的列表(它适用于Mac OS 10.6.2上的Firefox 3.5.5,但不适用于Mac OS 10.5.8上的Firefox 3.5.5?)。我用来验证/提交表单的代码和回调函数如下:
// hide the form and display success message (called after form is submitted)
function formHide() {
// cache form wrapper and blurb
var formWrapper = $("#contactForm");
var formBlurb = $("#contact .formBlurb");
// set the height of wrapper and blurb
formWrapper.height(formWrapper.height());
formBlurb.height(formBlurb.height());
// fade out required fields message, fade in success message
formBlurb.find(".requiredFields").fadeOut("fast", function() {
formBlurb.find(".thanks").fadeIn("fast");
});
// fade out form
formWrapper.find("form").fadeOut("slow", function(){
// slide up the div so there's no jump
formWrapper.slideUp("slow");
});
}
// cache the form
var form = $("#contactForm form");
// validate the form
$("#contactForm form").validate({
// when errors are made...
errorPlacement: function() {
// turn the background on those elements red
$("#contactForm form .error").animate( { backgroundColor:"#ff6666" }, "fast" );
},
// when submitting the form...
submitHandler: function(form){
$(form).ajaxSubmit({
// use fm.pl as the submission script
url: "cgi-bin/fm.pl",
// hide the form if it's successful
success: formHide
});
}
});
我使用的表单插件可以在http://malsup.com/jquery/form/找到,我使用的验证插件可以在http://bassistance.de/jquery-plugins/jquery-plugin-validation/找到。有什么我缺少的是破坏兼容性吗?
谢谢:)
P.S。 抱歉,我没有格式化我正在使用的插件的URL作为链接 - 在我有10个声望点之前,我不能发布多个链接。
P.P.S.好的,发布这个给了我10个声望点,所以我正在使用的插件的URL现在是链接。
答案 0 :(得分:0)
只是褪色不起作用吗?这些行看起来很可疑:
formWrapper.height(formWrapper.height());
formBlurb.height(formBlurb.height());
你想设置一个已经存在的高度是什么?
答案 1 :(得分:0)
罪魁祸首似乎是“成功:形式隐藏”中省略了括号。我的印象是这没关系,但显然不是。