$("#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;
});