gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 13:06:25 26 4
gpt4 key购买 nike

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

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

但我无法绑定(bind)在 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>

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

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

谢谢,

最佳答案

在 jQuery 中使用链接。

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

关于javascript - 如何绑定(bind)在 jquery 调用函数的选择菜单中定义的 onchange 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15547923/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com