DropDownlist通过id获取值

时间:2012-04-19 10:04:36

标签: jquery

我尝试检索dropdownlist值的值,但它打印undefined为什么?

var selected =  $("#checkedSelect option:selected").val();
我喜欢那样

{foreach from=$allTypes value=types}
                        <option id="checkedSelect" value="{$types.id}">{$types.type}</option>
                           {/foreach}

1 个答案:

答案 0 :(得分:1)

试试这个:

    var x;
    $("#checkedSelect").change(function(){
         x = $(this).val();
         alert(x);
    });