gpt4 book ai didi

javascript - 在下拉更改时运行 jQuery 函数

转载 作者:可可西里 更新时间:2023-11-01 01:35:10 24 4
gpt4 key购买 nike

我编写了一个当前在 Click 事件上运行的 jQuery 函数。我需要更改它,以便它在下拉框 (Select-Option) 值更改时运行。这是我的代码:

<form id="form1" name="form1" method="post" action="">
<label>
<select name="otherCatches" id="otherCatches">
<option value="*">All</option>
</select>
</label>
</form>

$("#otherCatches").click(function() {
$.ajax({
url: "otherCatchesMap.php>",
success: function(msg) {
$("#results").html(msg);
}
});
});

最佳答案

使用change()代替click():

jQuery(document).ready(function(){
$("#otherCatches").change(function() {
$.ajax({
url: "otherCatchesMap.php>",
success: function(msg){
$("#results").html(msg);
}
});
});
});

关于javascript - 在下拉更改时运行 jQuery 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4910795/

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