我在项目中使用jquery-steps。但我找不到任何方法将图标添加到上一个或下一个按钮。
我使用以下代码修改了javascript:
labels: {
next: "»",
previous: "«"
}
但这不是我喜欢的。
这是插件网址:http://www.jquery-steps.com/
有人知道这样做的方法吗?
提前致谢!
答案 0 :(得分:1)
您可以尝试使用jquery将html注入按钮。试试这个:
$('a[href="#next"]').html($('a[href="#next"]').html()+'»');
我希望这有帮助。
答案 1 :(得分: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'