尝试将libLink 功能与 NoUISlider一起使用时出现以下错误:
Uncaught TypeError: undefined is not a function (jquery.liblink.js:260
代码行:
// If the Link requires creation of a new element,
// Pass the element and request confirmation to get the changehandler.
// Set the method to be called when a Link changes.
linkInstance.changeHandlerMethod = this.LinkConfirm( flag, linkInstance.el );
在我的 HTML 中,我有以下代码:
<div id="slider" ></div>
我的Javascript:
$("#slider").noUiSlider({
start: 20,
range: {
'min': 10,
'max': 50
}
});
$("#slider").Link('lower').to('-inline-');
我在页面中包含了 NoUISlider 和 liblink 库。
我看不到价值标签。我该如何解决这个问题?谢谢!