我知道如何获取type第一个input元素的属性:
document.getElementById('button').addEventListener('click', function() {
var type = document.querySelectorAll('input')[0].type;
document.getElementById("p").textContent = type;
});
<input type="text">
<input type="number">
<input type="url">
<button id="button">Get it</button>
<p id="p"></p>
是否有一种方法可以随机获取type
属性,无论哪个,因此我不必指定input
索引?
繁华开满天机
相关分类