gpt4 book ai didi

javascript - onChange 选择列表

转载 作者:行者123 更新时间:2023-12-01 05:49:13 25 4
gpt4 key购买 nike

<form name="storelocator_cities_form" id="storelocator_cities_form">
<select name="storelocator_city" id="storelocator_city" onchange="storeLocatorForm.fetchStoresByCountryAndPostCode(this)">
<option value=""></option>
</select>
</form>

嗨,我想捕获选项值,然后将其与特定城市进行比较,但我陷入了困境。我对 JS 和 jQuery 都很陌生,但我想我需要做类似的事情

jQuery(function(){
$('#storelocator_city').on('change',function(){
var city = $(this).val();
});
});

我想要一种方法来查看我在控制台的 var 中获得正确的值。

最佳答案

I would like a way to see that i get the correct value in the var in the console

当然,但首先:

为什么有 2 个 onchange 事件?

enter image description here

无论如何 - 要查看控制台中的值:试试这个:

jQuery(function(){
$('#storelocator_city').on('change',function(){
var city = $(this).val();
console.log(city); <------- Try this
});
});

关于javascript - onChange 选择列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23979417/

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