Uncaught TypeError: (intermediate value) is not a function.

 Uncaught TypeError: (intermediate value) is not a function.

Uncaught TypeError: (intermediate value) is not a function.

出现这种bug的原因:在你的代码中,同时定义了变量、匿名函数或者闭包函数,并且该变量定义在了这两类函数之前,如果变量后面省略了分号,js就会自动解析为匿名函数进行自调,会被认为是变量名而不是方法,从而会导致报错;所以变量后面以及闭包函数后面都需要加上分号

如下图示例:加上分号后bug得以解决

Uncaught TypeError: (intermediate value) is not a function.

上一篇:C#關鍵詞


下一篇:2020了你还不会java8新特性?(八)流源构造代码分析与总结