gpt4 book ai didi

jquery - MVC 和 jQuery 验证, 'weave' javascript 在哪里以及如何嵌入母版页?

转载 作者:行者123 更新时间:2023-12-01 05:11:28 25 4
gpt4 key购买 nike

如果我的页眉/页脚位于母版页中,并且母版页中引用了我的 .js 文件,我如何在登录页面上添加 jQuery 验证?

如果检测到错误,我将如何修改 .js 文件以显示相应的错误消息?

最佳答案

你看过jquery validation plugin吗? ?该插件自动处理许多不同的验证任务——也就是说,您可能可以这样做:

$(document).ready( function { $(form).validate(); } );

使用适当的类属性注释您的文本字段。您应该能够在 View 页面上引用验证库,并在脚本标记内添加文档就绪函数。

<asp:Content runat="server" ID="viewcContent" ContentID="masterContent">
<script type="text/javascript" src="..path_to/jquery.validate.js">
</script>
<script type="text/javascript">
$(document).ready( function { $(form).validate(); } );
</script>
<% using (Html.BeginForm()) { %>

... form implementation...

<input type="text" id="username" name="username" class="required" />


<% } %>
</asp:Content>

关于jquery - MVC 和 jQuery 验证, 'weave' javascript 在哪里以及如何嵌入母版页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/291750/

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