我正在决定如何在网站上实现“选择”,并且正在强烈考虑使用 mobiscroll,只有一件小事让我烦恼,那就是“额外点击”(与老式下拉菜单相比)选择选项后所需的“设置”按钮。
我的问题是,有没有办法在通过单击或触摸选择选项时关闭滚动条并设置值,但如果由于拖动滚动条或使用鼠标滚轮而“选择”了新选项,则没有办法?
这是我的代码:
<script type="text/javascript">
$('#myScroller').mobiscroll({
preset: 'select',
theme: 'android-ics',
mode: 'mixed',
display: 'bubble',
rows: 7,
inputClass: 'subtleDropdown',
onChange: function(val, inst) {
//I would think this is where it's supposed to go, no luck thus far though!
console.log(this);
},
});
</script>
干杯!