我尝试检索dropdownlist值的值,但它打印undefined为什么?
var selected = $("#checkedSelect option:selected").val();
我喜欢那样
{foreach from=$allTypes value=types}
<option id="checkedSelect" value="{$types.id}">{$types.type}</option>
{/foreach}
答案 0 :(得分:1)
试试这个:
var x;
$("#checkedSelect").change(function(){
x = $(this).val();
alert(x);
});