1

我在一个项目上使用 jquery-steps。但我找不到任何方法可以将图标添加到“上一个”或“下一个”按钮。

我用以下代码修改了javascript:

                            labels: {
                            next: "»",
                            previous: "«"
                        }

但这不是我喜欢的。

这是插件网址:http ://www.jquery-steps.com/

有人知道这样做的方法吗?

提前致谢!

4

2 回答 2

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'
于 2014-09-29T20:21:00.360 回答
1

您可以尝试使用 jquery 将 html 注入到按钮中。尝试这个:

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

我希望这会有所帮助。

于 2014-09-29T20:17:14.547 回答