使用fontawesome图标并删除icon-spinner icon-spin

时间:2013-01-22 01:28:16

标签: javascript jquery twitter-bootstrap fonts

我遇到问题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>

1 个答案:

答案 0 :(得分: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>