我试图通过javascript在下拉菜单中获取当前选中的选项。但我似乎无法让它工作
我现在的js:
var itemqual = $("select#itemqual option:selected").text();
var type = "hat";
$('select#itemtype').change(function() {
if(itemtype == type) {
$('#graphic').show();
} else {
$('#graphic').hide();
}
});
然而,当我更改选择时,它不起作用。
答案 0 :(得分:2)
这个Javascript应该适合你。
var type = "hat";
$('select#itemtype').change(function() {
if($("select#itemtype option:selected").text() == type) {
$('#graphic').show();
} else {
$('#graphic').hide();
}
});