我想从一个 noUIslider 范围输出两个值。使用 noUIslider 文档中的示例,我已经到了可以输出相同值两次的地步,但我希望其中一个输出显示已通过数学方程传递的值(例如 *2 或 /3)所以它显示了不同的输出。
我的 javaScript / jQuery 能力很弱,所以请耐心等待。
// Setting up the slider
var tooltipSlider = document.getElementById('slider-tooltip');
noUiSlider.create(tooltipSlider, {
start: [40000],
step: 10000,
range: {
'min': 40000,
'max': 5000000
},
format: wNumb({
decimals: 3,
thousand: '.',
prefix: '£ ',
})
});
var tipHandles = tooltipSlider.getElementsByClassName('noUi-handle'),
tooltips = [];
// Add divs to the slider handles.
for (var i = 0; i < tipHandles.length; i++) {
tooltips[0] = document.createElement('div');
tipHandles[0].appendChild(tooltips[0]);
}
// Add a class for styling
tooltips[0].className += 'score';
// Add additional markup
tooltips[0].innerHTML = '<strong>Price </strong><span></span>';
// Replace the tooltip reference with the span we just added
tooltips[0] = tooltips[0].getElementsByTagName('span')[0];
// When the slider changes, write the value to the tooltips.
tooltipSlider.noUiSlider.on('update', function (values, handle) {
tooltips[handle].innerHTML = values[handle];
});
// When the slider changes, write the value again + maths
var rangeSliderValueElement = document.getElementById('slider-range- value');
tooltipSlider.noUiSlider.on('update', function (values, handle) {
rangeSliderValueElement.innerHTML = 'Price + Math: ' + values[handle];
});
我已经建立了一个 JSFiddle 我到目前为止所拥有的: https ://jsfiddle.net/jherit/qhgd9to0/1/