0

我有这样的单选按钮和下拉菜单:

落下

 <asp:RadioButtonList ID="rblTravelType" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow" EnableViewState="false" onclick="TypeOfTravelOnChange('rblTypeOfTravel');">
        <asp:ListItem Value="A" Text="Air Travel"></asp:ListItem>
            <asp:ListItem Value="O" Text="Other Travel"></asp:ListItem>
    </asp:RadioButtonList>

单选按钮

<select name="DrTravelMode" id="DrTravelMode">
    <option value="">--Select--</option>
    <option value="A">Air</option>
    <option value="T">Bus</option>
    <option value="B">train</option>
<select>

脚本 :

function TypeOfTravelOnChange(RadioButtonId) {
if ($('input:radio[name=' + RadioButtonId + ']:checked').val() == 'O') {
 $("#DrTravelMode option[value='A']").remove(); 
}
else
{
 // here i want to append the dropdown value "Air" between --Select-- and Bus
}

}

我的问题是,如何使用javascript在两个项目之间插入一个新的列表项。

4

2 回答 2

0

你可以这样使用

你需要找到索引然后使用如下

$("select option").eq(index).before($("<option></option>").val(val).html(text));

在你的情况下

先找到索引如下

var index= $("#DrTravelMode option[value='A']").index()

然后删除,然后在上面的索引处添加

于 2013-10-23T08:33:59.140 回答
0

我已将以下脚本放在 else 块中,它工作正常..

var select = document.getElementById("DrTravelMode");
    if ($("#DrTravelMode option[value='A']").length == 0) {
        var opt2 = document.createElement("option");
        opt2.text = "Air";
        opt2.value = "A";
        select.add(opt2, 1);
    }
于 2013-10-23T09:22:58.683 回答