1

我正在决定如何在网站上实现“选择”,并且正在强烈考虑使用 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>

干杯!

4

1 回答 1

0

最后,我们决定不使用 mobiScroll(可用的信息太少),所以我要结束这个问题。

于 2012-12-19T15:27:35.473 回答