我正在尝试构建一个自定义下拉列表,根据它的选择显示/隐藏第二组下拉列表。
我想知道这里是否有人可以帮助解决这个问题。
查看我的代码答案 0 :(得分:7)
使用jquery :selected
这里有一些文档http://api.jquery.com/selected-selector/
适用于选项菜单
如果你能给我一些关于你想做什么的更多信息,我现在正在更新你的Jfiddle。
修改强>
这是一个更新的jfiddle与你的答案。 http://jsfiddle.net/stAAm/7/
和Stack overflow
的代码副本$('#source').change(function () {
if ($('#source option:selected').text() == "France"){
$('.cities').hide();
$('#source2a').show();
} else if ($('#source option:selected').text() == "Germany"){
$('.cities').hide();
$('#source2b').show();
} else if ($('#source option:selected').text() == "India"){
$('.cities').hide();
$('#source2c').show();
} else {
$('.cities').hide();
} });