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.
单击轨道时,如何输出滑块值(selectedV)。目前我只能通过拖动滑块手柄来实现这一点。
我单击轨道以移动可观察对象未注册的句柄。
self.selectedV = ko.observable(2);
这是我的例子:
http://jsfiddle.net/ERz7u/21/
正如@Origineil 建议的那样,将以下代码从
$(element).on('slide', function (ev) { valueObservable(ev.value); });
至
$(element).on('slideStop', function (ev) { valueObservable(ev.value); });
确实给出了您期望的结果。(至少在 chrome 中)
http://jsfiddle.net/gonefishern/ERz7u/30/