我正在尝试使用另一个选择列表来过滤选择列表。问题是我无法在过滤后重新加载列表。因此,如果用户在第一个列表中不小心做出了错误的选择,则第二个列表中将不会留下任何选项。您可以在下面看到我的代码,谢谢。
$('#selectCftDialog').change(function() {
//alert('Handler for .select() called.');
var tempCftID;
tempCftID = $("#selectCftDialog").val();
//alert("The tempCraftID is: CftID-" + tempCraftID)
$('#selectSpDialog option').not('#CftID-' + tempCftID).remove();
});