我想在jQuery中连接dropDownList id。
这是DropDownList:
<asp:DropDownList ID="MyDropdownlist3" Style="display: block" disabled="true" runat="server" Height="23px" Width="200px"></asp:DropDownList>
<asp:DropDownList ID="MyDropdownlist4" Style="display: none" runat="server" Height="23px" Width="200px"></asp:DropDownList>
这行代码适用于我:
$("#MyDropdownlist3").attr("disabled", false);
当我尝试这样做时,我遇到了问题:
$("#MyDropDownList" + x).attr("disabled", false);
$('#MyDropDownList' + 3).attr("disabled", false);
这也不起作用(希望它是同一个问题)。
document.getElementById("MyDropDownList" + x).style.display = "Block";
document.getElementById("MyDropDownList" + 4).style.display = "Block"
感谢您的帮助