2014-09-29 177 views

回答

1

你可以嘗試使用jquery將html注入按鈕。試試這個:

$('a[href="#next"]').html($('a[href="#next"]').html()+'»'); 

我希望這可以幫到你。

1
labels: { 
     next: '\u00bb', 
     previous: '\u00ab' 
} 
labels: { 
     next: String.fromCharCode(187), 
     previous: String.fromCharCode(171) 
} 
labels: { 
     next: '»', 
     previous: '«' 
} 
//String.fromCharCode(187) » '\u00bb' 
//String.fromCharCode(171) « '\u00ab' 
相關問題