我使用网络表单在c#中工作, 当将欧芹用于输入验证时,它不会使用'等于'如果等于字段更改,则arttirbute无效。
<input type="password" runat="server" id="passwordTB" name="passwordTB" class="form-control" data-parsley-required="true" data-parsley-trigger="change" autocomplete="off" data-parsley-length="[7,40]" />
Repeat Password:
<input type="password" runat="server" id="passwordTBRepeat" name="passwordTBRepeat" class="form-control" data-parsley-required="true" data-parsley-trigger="change" data-parsley-equalto="#passwordTB" autocomplete="off" data-parsley-length="[7,40]" />
我希望passwordTBRepeat能够验证自己,如果passwordTB发生了变化,它将变为无效,但它没有。
我使用的是parsley v2.1.2和jquery 2.1.4。
这是设计还是我做错了什么?