Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近开始使用 Jquery anythingslider,直到现在我都很喜欢它。
我只是想是否可以将出现在导航按钮(1,2 等)上的默认文本更改为一些自定义文本。
谢谢。
使用navigationFormatter选项:
navigationFormatter
$('#slider2').anythingSlider({ // Format navigation labels with text navigationFormatter : function(index, panel){ return ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'][index - 1]; } });