我在提交表单时正在调用ajaxform submit
函数。但是,当我点击submit button
中的form
时,我得到undefined alert
。我在IE9
中收到此问题。我在chrome
和firefox
中找不到此问题。有人可以帮我解决这个问题。谢谢提前.. :)
$("#myForm").ajaxForm({
var fname = $('#testimonial_send #name').attr('value');
var myemail = $('#testimonial_send #email').attr('value');
var mymessage = $('#text').attr('value');
type: "POST",
data: {
name: fname,
email: myemail,
message: mymessage,
},
success: myresult,
}).submit();
function myresult(){
window.location.replace("homepage");
}
答案 0 :(得分:0)
添加错误回调,看看那里有什么。
$("#myForm").ajaxForm().success(...).error(..)