为了账号安全,请及时绑定邮箱和手机立即绑定

报错:document.getElementByClassName is not a function(…)怎么回事?

报错:document.getElementByClassName is not a function(…)怎么回事?

qq_未完待续_13 2016-12-25 17:34:40
var g=function (id){    if (id.substr(0,1)=='.') {      return document.getElementByClassName(id.substr(1));    }    return document.getElementById(id);  }
查看完整描述

3 回答

?
qq_未完待续_13

TA贡献3条经验 获得超3个赞

getElementsByClassName少个s

查看完整回答
2 反对 回复 2016-12-25
?
qq_未完待续_13

TA贡献3条经验 获得超3个赞

当调用函数:g('.main-i');时报出的错误,求大神解决

查看完整回答
反对 回复 2016-12-25
  • 发霉的饭盒
    发霉的饭盒
    我建了个测试页面不会报错呀 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <div id=".main-i"></div> <div class=".main-i"></div> <script> var g=function(id){ if(id.substr(0,1)=="."){ return document.getElementsByClassName(id.substr(1)); } return document.getElementById(id); } </script> </body> </html>
  • 3 回答
  • 0 关注
  • 5044 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信