如何讓我的jQuery多階段表單在成功提交時淡出並且結果淡入?我將它與jQuery表單插件(http://jquery.malsup.com/form/)一起使用。當用戶點擊提交按鈕時jQuery多階段表單動畫
這是我處理所有提交的jQuery表單代碼。
<script type="text/javascript">
// prepare the form when the DOM is ready
$(document).ready(function() {
var options = {
target: '#t5',
beforeSubmit: showRequest,
success: showResponse
};
// bind to the form's submit event
$('#t5_booking').submit(function() {
$(this).ajaxSubmit(options);
return false;
});
});
// pre-submit callback
function showRequest(formData, jqForm, options) {
var queryString = $.param(formData);
// alert('About to submit: \n\n' + queryString);
}
// post-submit callback
function showResponse(responseText, statusText, xhr, $form) {
}
</script>
這是多階段形成它的工作原理在旁邊:
http://jsfiddle.net/methuselah/xSkgH/56/
如何將代碼看起來好像是圍繞移動到jQuery的形式showResponse方法? – CJS 2012-03-26 10:04:48
我爲你添加了一些代碼。 – Spooky 2012-03-26 10:59:25