我有一个带有 questionInput 类的输入字段,我想使用 js validate 对其进行验证。
问题是用户可以在按下按钮时添加更多问题,这会克隆原始字段。使用类 questionInput 创建更多字段。
我试过添加:
$('.questionInput').each(function() {
$(this).rules('add', {
required: true,
messages: {
required: "fill in this field please"
}
});
});
但这似乎不起作用。
有谁知道我该怎么做?