ASP.NET JS验证DropDownList的值改变
我现在有个DropDownList,我希望用JS验证如果DropDownList改变时,能提示希望能提供完整的代码...
我现在有个DropDownList,我希望用JS验证如果DropDownList改变时,能提示
希望能提供完整的代码 展开
希望能提供完整的代码 展开
展开全部
<script src="Scripts/jquery-1.8.2.intellisense.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#<%=ddl.ClientID %>").change(function () {
alert("值已经改变!");
});
});
</script>
<asp:DropDownList runat="server" ID="ddl">
<asp:ListItem Selected="True">aaa</asp:ListItem>
<asp:ListItem >bbb</asp:ListItem>
<asp:ListItem >ccc</asp:ListItem>
<asp:ListItem>ddd</asp:ListItem>
</asp:DropDownList>
刚才写的,你参考下把。
<script type="text/javascript">
$(document).ready(function () {
$("#<%=ddl.ClientID %>").change(function () {
alert("值已经改变!");
});
});
</script>
<asp:DropDownList runat="server" ID="ddl">
<asp:ListItem Selected="True">aaa</asp:ListItem>
<asp:ListItem >bbb</asp:ListItem>
<asp:ListItem >ccc</asp:ListItem>
<asp:ListItem>ddd</asp:ListItem>
</asp:DropDownList>
刚才写的,你参考下把。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询