我正在使用移动解决方案滑块“swipe.js”(https://github.com/bradbirdsall/Swipe)。现在我想使用api-function getPos返回实际的幻灯片。不幸的是我的代码不起作用:
var elem = document.getElementById('mySwipe');
window.mySwipe = Swipe(elem, {
callback: function() {
var pageNumber = elem.getPos();
alert("P"+pageNumber);
}
});
怎么了?它是如何运作的?
感谢您的帮助
答案 0 :(得分:0)
你快到了那里:
var pos = mySwipe.getPos() + 1;
alert( pos );