好吧,这就是多选列表的用途,但如果你真的想要三个单独的下拉菜单,这里有一些我为你准备的东西:
var $one = $("#one"),
$two = $("#two"),
$three = $("#three"),
$options = $one.children().clone();
$one.change(function() {
var oneVal = $one.val(),
twoVal = $two.val();
$two.empty()
.append($options.clone().filter(function(){
return this.value != oneVal; }))
.children().filter(function(){ return this.value == twoVal; })
.prop("selected",true);
$two.change();
});
$two.change(function() {
var oneVal = $one.val(),
twoVal = $two.val(),
threeVal = $three.val();
$three.empty();
if (twoVal === "")
return;
$three.append($options.clone().filter(function() {
return this.value != twoVal && this.value != oneVal;
}))
.children().filter(function(){ return this.value == threeVal; })
.prop("selected",true);
});
演示:http: //jsfiddle.net/G89m2/
这假设您有类似于我的演示中的 html,即,在第一个下拉列表中定义了可用选项。
一些浏览器不允许你使用 CSS 来隐藏选项元素,所以我采取的方法是,当第一个下拉列表中的选择发生变化时,它会从第二个和第三个中删除选项,并只放回不同的选项. 如果在第二个和第三个中有先前的选择,如果它仍然可用,它会恢复它。