欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

Uncaught TypeError: undefined is not a function

shiping1 的头像

[Uncaught TypeError: undefined is not a function][js变量名和方法名同名]

作者: johnny 分类: javascript 发布时间: 2014-03-13 07:41 ė11,033 views 6暂无评论

[Uncaught TypeError: undefined is not a function]

[变量名和方法名同名]

 

调试JS时出现以上的错误,仔细看原来是

 

变量名  和  方法名   同名了

1
2
3
4
5
var point = 11;
point=point();
function point(){
 return 12;
}
Uncaught TypeError: undefined is not a function
google翻译:未捕获类型错误:未定义不是一个函数
把名字改掉就好!

本文出自 陈飞的博客,转载时请注明出处及相应链接。

来自: http://www.cfei.net/archives/595

普通分类: