var bfurl="/i_count.php"; $.ajax({ url: 'i_count_right.php', cache: false, dataType: 'html', type:'GET', error: function(xhr) { //alert('Ajax request 發生錯誤'); }, success: function(response) { $('#count_r').html(response); $('#count_r').fadeIn(); } }); function re_left(){ $.ajax({ url: 'i_left.php', cache: false, dataType: 'html', type:'GET', error: function(xhr) { //alert('Ajax request 發生錯誤'); }, success: function(response) { $('#_left').html(response); $('#_left').fadeIn(); } }); } function go_share(){ $.ajax({ url: '/share/share_list.php', cache: false, dataType: 'html', type:'GET', error: function(xhr) { //alert('Ajax request 發生錯誤'); }, success: function(response) { $('#count_d').html(response); $('#count_d').fadeIn(); } }); }