Jquery 验证插件自定义所需文本

发布于 2024-09-26 12:39:34 字数 505 浏览 8 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难忘№最初的完美 2024-10-03 12:39:34

messages 选项name 一起使用下面的输入的 和下面的 rule: "message" ,如下所示:

$(document).ready(function() {
  $("#phonetypeform").validate({
      messages: {
          name: { required: "Custom Message" }
      }
  });
});​

Use the messages option with the name of the input underneath and the rule: "message" underneath that, like this:

$(document).ready(function() {
  $("#phonetypeform").validate({
      messages: {
          name: { required: "Custom Message" }
      }
  });
});​

You can test it out here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文