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.
我在 wordpress 中设置了一个 jQuery 滑块,插件附带了一个 api。我正在尝试创建自己的上一个和下一个按钮,有人可以帮助我了解代码的用途
这是给我的api信息
API 方法:上一张幻灯片:revapi1.revprev(); 下一张幻灯片:revapi1.revnext();
我想我需要知道如何使用上面的这两种方法
谢谢杰米
也许你可以试试这个。
把它放在你的标题中:
$(document).ready(function() { $("#revNext").click(function() { revapi1.revnext(); }); });
把它放在你的身体里
<div id="revNext"> Next Slide </div>