如何用JS实现一个DropDownList的值改变时触发另一个DropDownList的显示与隐藏
展开全部
<asp:DropDownList id="DropDownList 1 " runat="server" AutoPostBack="true" onselectedindexchanged="DropDownList1 _SelectedIndexChanged" ></asp:DropDownList>
<asp:DropDownList id="DropDownList 2 " runat="server" ></asp:DropDownList>
直接用DropDownList的事件(DropDownList1_SelectedIndexChanged,在属性里)
然后在服务器端写代码 判断DropDownList1的值,然后再决定DropDownList2显示隐藏
(DropDownList2.Visible=true/false)
<asp:DropDownList id="DropDownList 2 " runat="server" ></asp:DropDownList>
直接用DropDownList的事件(DropDownList1_SelectedIndexChanged,在属性里)
然后在服务器端写代码 判断DropDownList1的值,然后再决定DropDownList2显示隐藏
(DropDownList2.Visible=true/false)
更多追问追答
追问
这个我知道,已经用它实现功能了,但是我现在需要的是用JS在前台实现它,而且最要命的是这两个DropDownList在GridView中; 谢谢大侠,,麻烦再帮我想想
追答
function aa() {
var dropdownlist1 = document.getElementById("dropdownlist1");
var dropdownlist2 = document.getElementById("dropdownlist2");
if (dropdownlist1.SelectedValue == 1) {
dropdownlist2.style.display = "none";
}
if (dropdownlist1.SelectedValue == 2) {
dropdownlist2.style.display = "";
}
}
用这个试试
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |