0

fontawesome に問題があり、追加されたアイコンにicon-spinクラスがあると削除できません

<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>
4

1 に答える 1

0

これを解決する方法は、別のタグでスピナーをラップすることです

<h1>This is the title</h1>

<script>
  function updateByAjax() {
    $h1 = $('h1').append('<span class='ajax-wait'><i class="icon-spinner icon-spin"></i></span>')
    $.get('/url', function() { 
      $h1.html(resp.html).find('.ajax-wait').text('').remove() 
    })
  }
</script>
于 2013-01-22T01:28:15.537 に答える