当前位置:嗨网首页>书籍在线阅读

09-解决方案

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

16.2.2 解决方案

(function($) {
   $(document).ready(function() {
     $('#loadingIndicator')
        .bind('ajaxStart', function() {
          $(this).show();
        })
        .bind('ajaxComplete', function() {
          $(this).hide();
        });
     $.ajaxSetup({
        cache: true,
        dataType: 'json',
        error: function(xhr, status, error) {
          alert('An error occurred: ' + error);
        },
        timeout: 60000, // Timeout of 60 seconds
        type: 'POST',
        url: 'ajax-gateway.php'
     }); //结束 $.ajaxSetup()
   }); // 结束.read()
})(jQuery);