gpt4 book ai didi

javascript - 通过单击或箭头键选择下拉选择时的行为不同

转载 作者:行者123 更新时间:2023-11-30 15:45:07 25 4
gpt4 key购买 nike

<select id="s">
<option value="1">selected1</option>
<option value="2">selected2</option>
<option value="3">selected3</option>
<option value="4">selected4</option>
</select>
<div id="se">
</div>

$('body').on('change', '#s', function() {
$('#se').text($('#s :selected').text()+" / unfortunatly it also triggers when Im moving with the UP and DOWN keys, not just with select");
});

https://jsfiddle.net/8kLke2je/

如果我使用鼠标单击而不是使用向上和向下箭头从保管箱中选择一个项目,我希望触发此事件。

最佳答案

只需在选择上使用“点击”事件:

    $('#s').click(function(){
var sv = $('#s').val();
$('#se').html("That\'s it: "+sv);
});

这里有一个 fiddle :https://jsfiddle.net/nemoneminis/rwza9xzt/1/

关于javascript - 通过单击或箭头键选择下拉选择时的行为不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40180351/

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