我正在尝试打开滚动条,并有条件地设置时间值。当文本输入框为= 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'])
}
}
});
但它不起作用。任何建议将不胜感激。
答案 0 :(得分:0)
首先,您希望实现什么目标?
其次,mobiscroll与输入相关联,因此使用相同的方法决定值可能没有意义。
要设置默认值,请使用'setValue'方法。