icon-spin
我对 fontawesome 有疑问,一旦有类,我就无法删除附加的图标
<h1>This is the title</h1>
<script>
function updateByAjax() {
$h1 = $('h1').append('<i class="icon-spinner icon-spin"></i>')
$.get('/url', function(resp) {
$h1.html(resp.title).find('.icon-spinner').remove()
})
}
</script>