从下拉列表中获取过滤后的数据并显示在另一个下拉列表中
Fetch filtered data from the drop down list and present in another drop down list
我有一个下拉列表:
<asp:DropDownList ID="DropDownList1" runat="server" Width="222px">
<Items>
<asp:ListItem Text="Option 1" Value="1" />
<asp:ListItem Text="Option 2" Value="2" />
<asp:ListItem Text="Option 3" Value="3" />
<asp:ListItem Text="Option 4" Value="4" />
<asp:ListItem Text="Option 5" Value="5" />
<asp:ListItem Text="Option 6" Value="6" />
<asp:ListItem Text="Option 7" Value="7" />
</Items>
</asp:DropDownList>
我想创建一个下拉列表,其中包含上述下拉项目的所有项目,但正在选择的项目(上方)除外。
例如:我在上面的下拉列表中选择了选项 4,我想显示 1 到 7 的选项(选项 4 除外)作为第二个下拉列表的项目列表。
有人能告诉我如何实现吗?
我已使用以下代码将下拉列表值克隆为其他下拉列表值。
<script type="text/javascript">
$(function() {
$("#btnclone").click(function() {
$('#DropDownList1').clone().attr('id', 'choices_' + $(this).index()).insertAfter("#DropDownList1");
});
});
</script>
但是有人可以建议如何显示除上一个下拉列表中所选值之外的所有值吗?
这个对我有用:
<script type="text/javascript">
$('#btnclone').click(function () {
var original = $('select.selService:eq(0)');
var allSelects = $('select.selService');
var clone = original.clone();
$('option', clone).filter(function (i) {
return allSelects.find('option:selected[value="' + $(this).val() + '"]').length;
}).remove();
$('#target').append(clone).append('<br />');
});
</script>
我有一个下拉列表:
<asp:DropDownList ID="DropDownList1" runat="server" Width="222px">
<Items>
<asp:ListItem Text="Option 1" Value="1" />
<asp:ListItem Text="Option 2" Value="2" />
<asp:ListItem Text="Option 3" Value="3" />
<asp:ListItem Text="Option 4" Value="4" />
<asp:ListItem Text="Option 5" Value="5" />
<asp:ListItem Text="Option 6" Value="6" />
<asp:ListItem Text="Option 7" Value="7" />
</Items>
</asp:DropDownList>
我想创建一个下拉列表,其中包含上述下拉项目的所有项目,但正在选择的项目(上方)除外。 例如:我在上面的下拉列表中选择了选项 4,我想显示 1 到 7 的选项(选项 4 除外)作为第二个下拉列表的项目列表。
有人能告诉我如何实现吗?
我已使用以下代码将下拉列表值克隆为其他下拉列表值。
<script type="text/javascript">
$(function() {
$("#btnclone").click(function() {
$('#DropDownList1').clone().attr('id', 'choices_' + $(this).index()).insertAfter("#DropDownList1");
});
});
</script>
但是有人可以建议如何显示除上一个下拉列表中所选值之外的所有值吗?
这个对我有用:
<script type="text/javascript">
$('#btnclone').click(function () {
var original = $('select.selService:eq(0)');
var allSelects = $('select.selService');
var clone = original.clone();
$('option', clone).filter(function (i) {
return allSelects.find('option:selected[value="' + $(this).val() + '"]').length;
}).remove();
$('#target').append(clone).append('<br />');
});
</script>