//反馈表单提交 $(document).ready(function(){ $('#feedbackform').submit(function(){ $('#feedbackform').ajaxsubmit({ target: 'div#notice', url: pdv_rp+'feedback/post.php', success: function(msg) { if(msg=="ok"){ $('div#notice').hide(); $().alertwindow("您的留言已提交,我们会尽快和您联系",""); }else{ $('div#notice')[0].classname='noticediv'; $('div#notice').show(); $().setbg(); } } }); return false; }); }); //全站反馈表单提交 $(document).ready(function(){ $('#feedbacksmallform').submit(function(){ $('#feedbacksmallform').ajaxsubmit({ target: 'div#notice', url: pdv_rp+'feedback/post.php', success: function(msg) { if(msg=="ok"){ $('div#notice').hide(); $().alertwindow("您的留言已提交,我们会尽快和您联系",""); }else{ $('div#notice').hide(); alert(msg); } } }); return false; }); });