我想在 mobiscroll 日期选择器的弹出窗口中实现一个清除按钮有一个选项可以使用button3
,但是我无法清除输入并隐藏滚动条。
jQuery(this).mobiscroll({
preset: 'date',
theme:'ios',
button3Text:'clear',
button3: function(input, inst){
jQuery(this).val();
inst.close();
}})
我正在尝试使用函数的输入和inst
参数。不幸的是,我无法让它工作。
你能帮忙吗?
谢谢卢卡斯