現在、このjavascriptコードを使用して処理中のajaxがある場合は、カーソル画像を変更しました
$(function(){
$("html").bind("ajaxStart", function(){
$(this).addClass('busy');
}).bind("ajaxStop", function(){
$(this).removeClass('busy');
});
});
およびcss以下
html.busy, html.busy * {
cursor: wait !important;
}
次に、カーソルの横にもテキストを追加します。そして、ajaxが終了したらそれを削除します。jQueryプラグインを使用せずにそれを行うにはどうすればよいですか?