这个资源运行错误
你可以在这里添加网址,或者提供一个更好的资源建议
意见:


电子邮件:
描述:
$("#formButtonSend").click(function() { $('#report_error_form').submit(); }); $("#email").focus(); $("#report_error_form").submit(function() { $(this).ajaxSubmit( { url: '/window/source_feedback.php?locale=' + LOCALE + '&language=' + LANGUAGE + '&search_module=' + currentSearchModule + '&search_source=' + currentSearchSource, type: 'post', clearForm: true, beforeSubmit: function(formData, jqForm, options) { if ($('input[@name=complaint]').fieldValue() == '') { showAlert({ content: '你没有选择你的意见类型' }); return false; } }, success: function() { hideWindow(); showAlert({ content: '保存幷发送,谢谢', icon: 'ok' }); } }); return false; });