2

我正在尝试使用 javascript 在下拉菜单中获取当前选择的选项。但我似乎无法让它工作

我现在的js:

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

但是,当我更改选择时它不起作用。

4

1 回答 1

2

这个 Javascript 应该适合你。

var type = "hat";
$('select#itemtype').change(function() {
    if($("select#itemtype option:selected").text() == type) {
        $('#graphic').show();
    } else {
        $('#graphic').hide();
    }
});
于 2012-06-17T03:42:34.787 回答