Mobiscroll 怎么获取选择的值啊 10
$(function () {
var currYear = (new Date()).getFullYear();
start=currYear - 20;
end= currYear + 20 ;
$("#demo").mobiscroll().date({
theme: 'android-ics light', //皮肤样式
display: 'modal', //显示方式
mode:'scroller',
dateFormat: 'yy-mm-dd', // 日期格式
setText: '确定', //确认按钮名称
cancelText: '取消',//取消按钮名籍我
dateOrder: 'yymmdd', //面板中日期排列格式
dayText: '日', monthText: '月', yearText: '年', //面板中年月日文字
yearText: '年', monthText: '月', dayText: '日', //面板中年月日文字
startYear:start, //开始年份
endYear:end,//结束年份
headerText: function (valueText) { array = valueText.split('-'); return array[0] + "年" + array[1] + "月"+array[2]+"日"; }, //自定义弹出框头部格式
onSelect:function(valueText,inst){
//点击确定以后的结果
alert(valueText);
}
});
})
conosle.log(value)
}