<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中获得了正确的值。
答案 0 :(得分:0)
我想要一种方法来看到我在var中获得了正确的值 控制台
当然,但首先:
为什么你有2个onchange事件?
无论如何 - 要在控制台中查看值:试试这个:
jQuery(function(){
$('#storelocator_city').on('change',function(){
var city = $(this).val();
console.log(city); <------- Try this
});
});