這個document放在空號里是什么意思?
?$(function () {
??????????????? $(document).ajaxStart(function() {
??????????????? $('#divload').html("正在請求數(shù)據(jù)...");
??????????????? });
??????????????? $(document).ajaxStop(function() {
??????????????? $('#divload').html("數(shù)據(jù)請求完成!");
??????????????? });
2018-08-06
? ? 將document這個dom對象變成一個jQuery對象,從而可以使用jQuery對象的屬性和方法。