revshowslide()无法在wordpress插件旋转滑块

时间:2018-06-18 10:34:40

标签: javascript wordpress html5 revolution-slider

我正在尝试滚动到革命滑块加载的特定幻灯片。我尝试了revshowslide()方法,但似乎无法正常工作。

下面是我试图滚动到旋转滑块中特定幻灯片的代码。

revapi9.bind("revolution.slide.onloaded",function (e) {
    revapi9.revshowslide(5);
});

上面的代码无法正常工作,但是当我尝试使用相同的元素时,请点击<。p>

jQuery('footer').on('click', '#text-2 h3', function() {

    // revapi9 equals the API identified for the slider
    // revshowslide(2) will load the second slide
    revapi9.revshowslide(5);
    return false;

});

上面的代码正在运行。

但是当我尝试使用此代码

在窗口加载时单击该元素时再一次
jQuery(window).load(function(){
  //alert('testing');
  jQuery('footer #text-2 h3').click();
});

不知道发生了什么事可以请任何人帮忙。

0 个答案:

没有答案