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