私はサイトに「選択」を実装する方法を決定する過程にあり、mobiscroll を強く検討しています。私を悩ませている小さなことが 1 つだけあり、それは (昔ながらのドロップダウンと比較して) の「余分なクリック」です。オプションを選択した後に必要な「設定」ボタン。
私の質問は、クリックまたはタッチでオプションが選択されたときにスクローラーを閉じて値を設定する方法はありますか?
これは私のコードです:
<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>
乾杯!