Parsley.js - Displaying Errors in a Specified Element(Parsley.js - 在指定元素中显示错误)
问题描述
使用 Parsley.js,是否可以指定应该保存错误消息的元素?我试过了:
Using Parsley.js, is it possible to specify the element that should hold the error messages? I tried:
$('#myForm').parsley({
errors: {
container: {
$('#errorMessages')
}
}
});
但错误消息仍然放在我的表单输入之后.
But the error messages are still placed right after my form inputs.
推荐答案
我添加了另一个数据属性,data-parsley-errors-container="#element"
.这可以让您修改 DOM 以指定错误消息的显示位置.
I've added another data-attribute, data-parsley-errors-container="#element"
.
That could allow you modify the DOM to specify where the error messages will be displayed.
更多信息:http://parsleyjs.org/doc/index.html#ui-for-field
最好的
这篇关于Parsley.js - 在指定元素中显示错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Parsley.js - 在指定元素中显示错误


基础教程推荐
- 检查 HTML5 拖放文件类型 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01