1

私はサイトに「選択」を実装する方法を決定する過程にあり、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>

乾杯!

4

1 に答える 1

0

最終的に、mobiScroll を使用しないことに決めました (利用できる情報が少なすぎる) ため、この質問を閉じます。

于 2012-12-19T15:27:35.473 に答える