我有這樣的代碼,我使用POST無需重新加載頁面,但我不知道我怎麼能執行顯示的圖像添加腳本。例如loader.gif顯示圖像,同時運行POST
感謝您的幫助。
<script language="javascript" src="jquery-1.6.4.min.js"></script>
<script language="javascript">
$(document).ready(function() {
$().ajaxStart(function() {
$('#loading').show();
$('#result').hide();
}).ajaxStop(function() {
$('#loading').hide();
$('#result').fadeIn('slow');
});
$('#form, #fat, #form').submit(function() {
$.ajax({
type: 'POST',
url: $(this).attr('action'),
data: $(this).serialize(),
success: function(data) {
$('#result').html(data);
}
})
return false;
});
})
的可能重複的[顯示加載圖像,同時交使用Ajax(http://stackoverflow.com/questions/2509711/display-loading-image-while-post-with-ajax) – js1568