我正在用WordPress创建网站。当您单击导航项目时,客户端希望更改滑块。我正在为此使用Revolution Slider。
我在互联网上发现的解决方案仅适用于台式机,不适用于移动设备。我正在使用的主题具有使用select选项值创建的移动导航,但我不知道如何解决。
顺便说一句,我不了解Jquery或JS,所以如果您使用我的话,它对我没有帮助。
$('select').on('change', function() {
alert( this.value );
});
谢谢! :)
// ".slider-link" is the class name we assigned to the main menu item
jQuery('body').on('click', '.slider1', function() {
// revapi1 equals the API identified for the slider
// revshowslide(1) will load the second slide
revapi1.revshowslide(1);
return false;
});