Maison > Questions et réponses > le corps du texte
项目中用到mobiscroll,有个需求是要选择2个时间(例如酒店的入住时间和离店时间),本来是点击对应的输入框来弹出日期控件选择,但上面说这样繁琐。。。(无奈,其实根据需求去做项目,项目中各种繁琐、反正常人逻辑的地方多了去了,这就叫繁琐了?。。)。要求是只打开一个日期界面,多选,选定2天点确定就OK。
看过mobiscroll文档,看到有多选的参数
multiSelect: true
可是有个问题,文档这里并没有找到多选数量的限定,英文不好,大意上没找到。
大家有好的建议吗?
巴扎黑2017-04-10 16:48:54
$(function () {
$('#demo').mobiscroll().range({
theme: 'mobiscroll',
lang: 'zh',
display: 'bottom',
controls: ['calendar', 'time'],
defaultValue: [ new Date(2013, 6, 12), new Date(2013, 6, 18, 23, 59) ],
startInput: '#startDate',
endInput: '#endDate'
});
});