标签: javascript html meteor
我正在使用Meteor JS。
Meteor JS
如果我写代码:
console.log(document.getElementsById('email_id').value);
我的代码给出错误:
未捕获的TypeError:document.getElementsById不是函数
我不知道为什么?
答案 0 :(得分:1)
是document.getElementById,而不是Elements。
document.getElementById
Elements