fixing js
这个提交包含在:
父节点
c588ea7d3d
当前提交
837bdd80c9
@ -90,11 +90,7 @@ $('body').on('keyup keypress', '.js-authn-otp-code', function (e) {
|
||||
// if($(this).val().length === $(this).attr("maxlength")){
|
||||
// $('.submit-btn').prop("disabled", false);
|
||||
// }
|
||||
if ($(this).val().length === 14) {
|
||||
$('.submit-btn').prop('disabled', false);
|
||||
} else {
|
||||
$('.submit-btn').prop('disabled', true);
|
||||
}
|
||||
$(this).val().length === 14 ? $('.submit-btn').prop('disabled', false) : $('.submit-btn').prop('disabled', true);
|
||||
});
|
||||
|
||||
$('.js-authn-otp-code').mask('####-####-####');
|
||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户