如何使用 jquery 验证插件将错误消息和自定义图像添加到错误字段
我正在使用 jquery 验证插件(我对它相当新),如果字段错误,我需要将错误消息与标签旁边的另一个自定义图像一起显示。
这就是我目前所拥有的:
messages: {
fname: "Enter your firstname",
lname: "Enter your lastname"
},
errorPlacement: function(error, element) {
error.appendTo( element.parent("td").next());
},
如何添加代码来附加图像和文本?
I'm using jquery validation plugin (which im fairly new to) and I need the error message to be displayed along with another custom image next to the label, if the field is in error.
This is what I have currently:
messages: {
fname: "Enter your firstname",
lname: "Enter your lastname"
},
errorPlacement: function(error, element) {
error.appendTo( element.parent("td").next());
},
how do i add code to also append an image with the text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 示例
以及这些示例的代码
也是这一部分CSS的
Here is the example
And the code for those example
Also the piece of CSS