1

我正在尝试在应用程序上所做的一些更改上更新引导滑块的值。

它给了这个error : $(...).setAttribute is not a function

这个问题已经被记录在 gitHub https://github.com/seiyria/bootstrap-slider/issues/451

我已做出建议的更改

if (updateSlider === true) {
                    if (Array.isArray(this.options.ticks_labels) && this.options.ticks_labels.length > 0) { 
                        for (i = 0; i < this.options.ticks_labels.length; i++) {        
                            this.tickLabels[i].innerHTML = this.options.ticks_labels[i]
                        }
                    }
                }

这是更新它的代码。

function UpdateMonthSlider(month)
{
    var updtdArray = GetTicksArray(month.MonthMin, month.MonthMax, monthStep);
    $('#monthSlider').setAttribute("ticks", updtdArray);
    $('#monthSlider').setAttribute("ticks_labels",  GetFormattedLabels(updtdArray, 'months', false));
    $('#monthSlider').slider('refresh');
}

显示错误的小提琴示例: jsfiddle.net/mo6v9x7h/2

4

1 回答 1

-1

请试试这个:

$('#monthSlider').slider('setAttribute', 'ticks', updtdArray);
于 2017-09-04T15:46:28.430 回答