我正在使用纯JavaScript创建自己的滑块库。看看这里:
http://jsfiddle.net/bingo14/bhymxrqr/1/
我试图从getValue()函数返回最新的'currentValue',但是从初始警报中可以看到它返回0。
this.getValue = function getValue() {
//how do I return the latest current value?
return currentValue;
};
每次用户移动滑块时,如何让它更新?我想我在这里需要一些OOP原则的帮助!
感谢。
答案 0 :(得分:0)
"它确实更新了,我添加了setInterval(function(){console.log(mySlider.getValue())},1000);并且每秒返回当前值"
我没有正确测试它! Alex K.做对了