Jquery 验证插件自定义所需文本
我正在使用 Jquery 验证插件 (http://docs.jquery.com/Plugins/Validation) 来验证页面上的表单。
我正在使用“required”类来验证页面上的输入,并希望在字段为空时显示自定义所需文本。我该怎么办呢。
代码如下:
<script>
$(document).ready(function() {
$("#phonetypeform").validate({
});
});
</script>
<form id="phonetypeform" name="register" action="register.php">
<input class="required" type="text" name="name" />
<button type="submit">Submit</button>
</form>
I am using the Jquery Validation plugin (http://docs.jquery.com/Plugins/Validation) to valid a form on my page.
I am using the "required" class to validate an input on my page and want to show custom required text when the field is empty. How can I do this.
Code is as follows:
<script>
$(document).ready(function() {
$("#phonetypeform").validate({
});
});
</script>
<form id="phonetypeform" name="register" action="register.php">
<input class="required" type="text" name="name" />
<button type="submit">Submit</button>
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
messages
选项 与name 一起使用下面的输入的
和下面的rule: "message"
,如下所示:Use the
messages
option with thename
of the input underneath and therule: "message"
underneath that, like this:You can test it out here.