我正在尝试为我的网站实施一个反馈框。我使用了jquery(http://grasshopperpebbles.com/demos/index.php/jqueryui/feedback/dialog)。链接博客文章中给出了解释。我能够显示对话框,但不读取send_mail.php。为什么会这样?
提前致谢。
答案 0 :(得分:0)
没关系。我自己修好了。这适用于那些正在寻找答案的人。在'ui.imFeedBack-0.5.2.js'文件中,我更改了sendFeedback函数部分。这是代码 -
sendFeedBack: function() {
x=$("#imFeedBack-FormContainer").serialize();
$.post("send_mail.php",'&'+x,function(result){
$('#imFeedBack-FormContainer').html(result);
});
}
您可以根据自己的要求对此进行更改