获取表单中当前选定的选项

时间:2012-06-17 03:41:48

标签: javascript jquery html

我试图通过javascript在下拉菜单中获取当前选中的选项。但我似乎无法让它工作

我现在的js:

var itemqual = $("select#itemqual option:selected").text();
var type = "hat";
$('select#itemtype').change(function() {
if(itemtype == type) {
    $('#graphic').show();
} else {
    $('#graphic').hide();
}
});

然而,当我更改选择时,它不起作用。

1 个答案:

答案 0 :(得分:2)

这个Javascript应该适合你。

var type = "hat";
$('select#itemtype').change(function() {
    if($("select#itemtype option:selected").text() == type) {
        $('#graphic').show();
    } else {
        $('#graphic').hide();
    }
});