onChange选择列表

时间:2014-06-01 11:35:42

标签: javascript jquery

<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中获得了正确的值。

1 个答案:

答案 0 :(得分:0)

  

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

当然,但首先:

为什么你有2个onchange事件?

enter image description here

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

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