gpt4 book ai didi

javascript - 使用 jquery 进行下拉列表验证

转载 作者:行者123 更新时间:2023-11-30 06:44:02 25 4
gpt4 key购买 nike

我想用 jQuery 验证一个 dropdownlist。我的代码是:

<asp:DropDownList ID="ddlstate" runat="server" CssClass="dropdown">
<asp:ListItem Value="0" Selected="True"> - Select State - </asp:ListItem>
<asp:ListItem Value="AL">AL</asp:ListItem>
<asp:ListItem Value="AK">AK</asp:ListItem>
<asp:ListItem Value="AZ">AZ</asp:ListItem>
<asp:ListItem Value="AR">AR</asp:ListItem>
<asp:ListItem Value="CA">CA</asp:ListItem>
<asp:ListItem Value="CO">CO</asp:ListItem>
<asp:ListItem Value="CT">CT</asp:ListItem>
</asp:DropDownList>

我的 jQuery 验证是:

$(document).ready(function() {
$("#aspnetForm").validate({
rules: <%=ddlstate.UniqueID %>: {
required: "*"
}
},
messages: <%=ddlstate.UniqueID %>: {
required: "*"
},
});

最佳答案

试试这个。添加一个名为 dropdownvalidator 的方法,它将验证下拉列表

$.validator.addMethod("dropDownValidator", function (value, element, parameters) {
return (value != '0');
});

并在规则中指定dropdownvalidator方法如下

rules: {
myDropdown: {
dropDownValidator: true
}

关于javascript - 使用 jquery 进行下拉列表验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8500800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com