这个document放在空号里是什么意思?
$(function () {
$(document).ajaxStart(function() {
$('#divload').html("正在请求数据...");
});
$(document).ajaxStop(function() {
$('#divload').html("数据请求完成!");
});