$('#logonButton').click(function() {
if ($(this).text() == 'logon') {
$(this).css('cursor','wait');
$.getJSON('http://localhost:8080/test?method=logon', function(data, returnValue) {
$('#output').append("<p>"+data+"</p>");
$('#logonbutton').css('cursor','default');
$('#logonButton').text('logoff');
});
...
此登錄需要一些時間爲默認,所以我想將光標定位到「等待」的JSON調用之前,然後將其設置回「默認」回調時被擊中。光標不會恢復在JSON回調
調用返回並將數據添加到輸出div,但#logonButton div文本不更改,並且光標停留在「繁忙」狀態。
*尷尬*謝謝.... – shaz 2013-02-23 15:26:29