2017-06-22 63 views

回答

0

我認爲這會幫助你,但這個解決方案中使用jQuery的,在你使用這個主題到您的網站

$('.member a').each(function() { 
     var text = $(this).text();  
     if(text == 'Unlock'){ 
      $(this).html(text.replace('Unlock', "<img src='"+templateUrl+"/image/unblck.png'"+" />"));  
     }else{ 
      $(this).html(text.replace('lock', "<img src='"+templateUrl+"/image/blck.png'"+" />")); 
     } 
    });