所以我目前正在尝试访问这个元素中的classNameHTML输入:
<div id="1">
<span>
<input name="classNameHTML" type="text" />
<span>
</div>
我目前写的代码是
let cObj = document.getElementById(1);
let cObjClass = cObj.children[0].classNameHTML.value; <--- buggy line
错误信息:
Uncaught TypeError: Cannot read property 'value' of undefined
at calcGrade (index.html:172)
at HTMLButtonElement.onclick (index.html:243)
我以为 children[0] 会引用 span,然后我可以通过它的输入名称使用 reference classNameHTML。控制台说 clasNameHTML 在我执行控制台时未定义.log()。谁能告诉我,我在这里用点运算符做错了什么?
蓝山帝景
UYOU
相关分类