mobiscroll是一款JQuery手机端日期插件,插件非常很好用,它可以实现在移动端滚动选择日期。
(下载的附件中包含DEMO)
<input id="demo" placeholder="Please Select..." />
<button id="clear">Clear</button>
<button id="show">Show</button>
$(function () {
$('#demo').mobiscroll().date({
theme: 'mobiscroll',
display: 'bottom'
});
$('#show').click(function () {
$('#demo').mobiscroll('show');
return false;
});
$('#clear').click(function () {
$('#demo').mobiscroll('clear');
return false;
});
});
官网地址 :https://mobiscroll.com/
GitHub 地址 :https://github.com/acidb/mobiscroll