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

13-解决方案

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

16.3.2 解决方案

(function($) {
   $(document).ready(function() {
     $('#ajaxStatus')
        .ajaxStart(function() {
          $(this).show();
        })
        .ajaxStop(function() {
          $(this).hide();
        });
     //在单击doAjaxButton按钮时启动Ajax请求
     $('#doAjaxButton').click(function() {
        $.ajax({
          url: 'ajax-gateway.php',
             data: { val: "Hello world" },
             dataType: 'json',
          success: function(json) {
             //数据处理代码
             $('body').append( 'Response Value: ' + json.val );
          }
        });
     });
   });
})(jQuery);