我需要在檢索數據時添加字體超棒旋轉齒輪,並在完成時將其刪除。添加字體真棒旋轉齒輪jQuery點擊功能?
這是要添加的HTML:
<i class="fa fa-spin fa-cog"></i>
這是腳本:
(function($) {
$('.acf-get-content-button').click(function(e){
e.preventDefault();
var $contentWrapper = $('#acf-content-wrapper');
var postId = $contentWrapper.data('id');
$.ajax({
url: "/field-ajax.php",
type: "POST",
data: {
'post_id': postId
},
})
.done(function(data) {
$contentWrapper.append(data);
$('.acf-get-content-button').removeClass().addClass('.acf-get-content-button')
});
});
$('.acf-get-content-button').mouseup(function(){
if (event.which == 1) {
$(".acf-get-content-button").hide();
}
});
})(jQuery);
我一直在尋找了一段時間,但沒有一個例子我已經找到了足夠的樣子像我的腳本來實現它(我不是程序員)。
使用jQuery [addClass()](https://api.jquery.com/addclass/)你可以在執行ajax時添加需要的類,並且已經使用的代碼將類刪除,以便在'done'中再次使用該類來刪除它。 – Nope
正確看到我的答案。 – zer00ne