Javascript 基本jquery滑块下一个文本不工作

Javascript 基本jquery滑块下一个文本不工作,javascript,jquery,Javascript,Jquery,我使用此功能,但我的第二个滑块不显示“下一个”和“上一个”功能。请帮助我您必须明确设置要使用showcontrols显示控件: jQuery('#slider-container').bjqs({ 'animation' : 'slide', 'width' : 1060, 'height' : 500, 'showControls' : false, 'centerMarkers' : false, animationDuration: 500, rotationS

我使用此功能,但我的第二个滑块不显示“下一个”和“上一个”功能。请帮助我

您必须明确设置要使用
showcontrols
显示控件:

jQuery('#slider-container').bjqs({
  'animation' : 'slide',
  'width' : 1060,
  'height' : 500,
  'showControls' : false,
  'centerMarkers' : false,
  animationDuration: 500,
  rotationSpeed: 5000
});
jQuery('#quotes-slider').bjqs({
  'animation' : 'slide',
  'width' : 760,
  'height' : 135,
  'showControls' : false,
  'centerMarkers' : false,
  nexttext : 'Next', // Text for 'next' button (can use HTML)
  prevtext : 'Prev',
  animationDuration: 500,
  rotationSpeed: 5000
});

您是否可以在开发人员工具的控制台中发布更多代码和错误
jQuery('#quotes-slider').bjqs({
  showcontrols : true,
  nexttext : 'Next', // Text for 'next' button (can use HTML)
  prevtext : 'Prev'
});