0

我正在尝试使用有条件设置的时间值打开滚动条。当文本输入框 = 0 时,将 mobiscroll 设置为 0。当输入值为 0 时,它似乎默认为 12。我尝试了很多方法,这是我得到的最接近的方法......

$(function () {

    $('.in').scroller({
        preset: 'time',
        theme: 'default',
        display: 'modal',
        mode: 'mixed',
        stepMinute: 15,
        timeWheels: 'hhii',
        ampm: false,
        ampmText: false,
        timeFormat: 'hh:ii',
        onShow: function (valueText, inst) {
            scrollerVals = inst.temp;

            if ($(this).val() == "0" || $(this).val == null || $(this).val == "") {
                $(this).scroller().scroller('setValue', ['1', '0'])
            }
        }
    });

但它不起作用。任何建议,将不胜感激。

4

1 回答 1

0

首先你想达到什么目标?

其次,mobiscroll 与输入相关联,因此使用它来决定值可能没有意义。

要设置默认值,请使用“setValue”方法。

于 2012-09-18T21:17:50.367 回答