如何使用 ParsleyJS 2.* 使用 javascript 而不是数据属性
How to use ParsleyJS 2.* using javascript and not data attributes
查看文档,他们只提供了带有数据属性的示例,我需要为表单编写一个不同的 js 文件并执行如下操作:
$('#myform').parsley(选项);
我想知道选项中的可用方法,并将验证器应用于输入,然后打印自定义消息。
有可能吗?
是的,只需使用等效的驼峰式大小写即可。另见 defaults
$('#myform').parsley({errorClass: 'oups'});
一些 javascript 方法在 documentation 中,其他方法您必须查看源代码。
例如,(参见 this on how to add the corresponding validator):
$('#myform').parsley().addConstraint('isMultiple', 42)
查看文档,他们只提供了带有数据属性的示例,我需要为表单编写一个不同的 js 文件并执行如下操作:
$('#myform').parsley(选项);
我想知道选项中的可用方法,并将验证器应用于输入,然后打印自定义消息。
有可能吗?
是的,只需使用等效的驼峰式大小写即可。另见 defaults
$('#myform').parsley({errorClass: 'oups'});
一些 javascript 方法在 documentation 中,其他方法您必须查看源代码。
例如,(参见 this on how to add the corresponding validator):
$('#myform').parsley().addConstraint('isMultiple', 42)