htmlHelper.Label 和 jquery 验证
我正在尝试做一些 jQuery 验证。我很难在我的项目中添加标签...
标签将成为 jQuery UI 对话框的一部分,每当我的作业中有该标签时,jQuery UI 对话框就不会加载 div。我有点困惑...
%><%=Html.Label("",row)%><%
验证功能...
$("#temp1").validate({
rules: {
HospitalFinNumber: {
required: true,
minlength: 6
},
AdminDate: { requried: true }
}
});
天哪我很困惑。
I am trying to do some jQuery validation. I am having a hard time getting a label into my project...
The Label will part of a jQuery UI Dialog, and whenever I have that label in my assignment jQuery UI dialog wont lode the div. I am a little confounded...
%><%=Html.Label("",row)%><%
Validate function...
$("#temp1").validate({
rules: {
HospitalFinNumber: {
required: true,
minlength: 6
},
AdminDate: { requried: true }
}
});
Boy howdy am I confused.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很可能是因为生成的 HTML 中标签上的
for
属性无效;注意你的外壳。您需要通过重载的 Html 显式指定这一点。标签方法。This is most likely because the
for
attribute on the label within the generated HTML is not valid; note your casing. You need to explicitly specify this via the overloaded Html.Label method.