如何在jquery调用函数中绑定选择菜单中定义的onchange事件?

时间:2013-03-21 12:43:55

标签: javascript jquery select xhtml bind

我正在尝试使用以下插件实现克隆选择菜单:

https://github.com/afEkenholm/ScrollectBox

https://github.com/afEkenholm/ScrollectBox/blob/master/index.html

https://github.com/afEkenholm/ScrollectBox/blob/master/js/ScrollectBox/jquery.scrollectbox.js

但是我无法在jquery调用函数中绑定以下选择菜单中定义的onchange事件。

    <select onchange="function(this);" id="selector" class="selection" >
    <option value="" selected="Select Topic">Select Topic</option> 
    <option value="Food">Food</option>
    <option value="Drink">Drink</option>
    </select>

如何在以下调用函数中绑定onchange="function(this);"

<script type="text/javascript">
jQuery(document).ready(function($){ 
   $(".selection").scrollectBox({
    preset: 'dropdown',
    numVisibleOptions: 4,
    scrollInterval: 150, 
    scrollOn: 'hover'
    });
});
</script>

感谢,

1 个答案:

答案 0 :(得分:3)

在jQuery中使用链接。

$(".selection").scrollectBox({
    preset: 'dropdown',
    numVisibleOptions: 4,
    scrollInterval: 150, 
    scrollOn: 'hover'
}).on('change', function() {
    // this
});