Jquery内联消息和验证

时间:2012-12-04 20:54:08

标签: jquery jquery-plugins jquery-validate

是否可以在表单中为每个元素添加自定义消息,但是可以内联吗?例如:

<input type="text" name="mybox" id="mybox" class="required" requiredmessage="This is my custom message." />

我知道你可以使用:

$('#myForm').validate();

设置自定义消息,但想知道我是否可以像规则一样内联它?

2 个答案:

答案 0 :(得分:1)

您需要做的就是将自定义消息设置为title属性。例如,您可以执行以下操作:

<input type="text" class="required" title="This is my custom message." />

我希望有所帮助。

迈克尔

答案 1 :(得分:0)

您可以执行以下操作:

<input type="text" name="mybox" id="mybox" class="required" data-msg-required="This is my custom message." />