我正在尝试使用有条件设置的时间值打开滚动条。当文本输入框 = 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'])
}
}
});
但它不起作用。任何建议,将不胜感激。