I have an input element:
<input type="password" name="password1" autocomplete="new-password" placeholder="Password" disabled class="register_field" required id="id_password1">
When I assign it to a variable and log its type:
const password1 = $("#id_password1");
console.log(password1.type);
It returns 'undefined'. Why not password?
I thought it may have been the initial disabled property on the input, or the novalidate property of the form itself, or because I'm using Django's template engine to generate the form, but none were the cause. Immense thanks for any suggestions.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…