24
如何显示jQuery中的加载微调器?
在原型中,我可以使用以下代码显示“正在加载...”图像: var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, onLoading: showLoad, onComplete: showResponse} ); function showLoad () { ... } 在jQuery中,我可以使用以下命令将服务器页面加载到元素中: $('#message').load('index.php?pg=ajaxFlashcard'); 但是如何像在Prototype中一样将加载微调器附加到此命令?