gpt4 book ai didi

javascript - 在 jquery 验证引擎中显示自定义消息

转载 作者:行者123 更新时间:2023-12-03 08:17:03 25 4
gpt4 key购买 nike

有两个字段用户名和密码,我使用了 validate[required] 类。

<input id="username" name="username" class="validate[required] text-input" placeholder="Enter your username" type="text">
<input id="password" name="password" class="validate[required] text-input" placeholder="Enter your password" type="password">
jQuery("#loginForm").validationEngine('attach', {
promptPosition: "topRight",
scroll: false
});

现在,当我单击提交按钮时,它会显示其标准消息,但我想显示我的自定义消息。最好的方法是什么?

最佳答案

不知道为什么它不适合你。这是一个工作示例。

Javascript

$("#formID2").validationEngine({'custom_error_messages' : {
'#text1' : {
'required': {
'message': "Why you no give name?"
}
}
}
});

HTML

<form id="formID2">
<label for="text1">Please enter your name:</label>
<input type="text" class="validate[required]" id="text1" />
</form>

https://jsfiddle.net/pt4tjdtd/

关于javascript - 在 jquery 验证引擎中显示自定义消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33889220/

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