Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

javascript - Why is input field.type returning undefined?

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you are using jQuery, $(...) returns a jQuery object, not a DOM element. In that case you want to call .attr('type').

console.log($('#field').attr('type'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="password" id="field">

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...