admin管理员组文章数量:1345194
I wrote the following functions. At run time the browser plains about uncaught TypeError ...has no method 'init'. What's wrong of my code?
function build_results_grid (response) {
// build grid
grid_ui.init();
} // build the results grid
var grid_ui = function () {
return {
init: function () {
//build_grid();
}
}; // return
}
I wrote the following functions. At run time the browser plains about uncaught TypeError ...has no method 'init'. What's wrong of my code?
function build_results_grid (response) {
// build grid
grid_ui.init();
} // build the results grid
var grid_ui = function () {
return {
init: function () {
//build_grid();
}
}; // return
}
Share
Improve this question
asked Dec 21, 2010 at 2:55
Progress ProgrammerProgress Programmer
7,39415 gold badges51 silver badges55 bronze badges
2 Answers
Reset to default 9You assigned grid_ui
to a function, without calling it.
Change that to
var grid_ui = (function() { ... })();
since a call to grid_ui is necessary to return the function with init inside, you need
grid_ui().init();
Since grid_ui must be called. Or you can make grid_ui
be the return of the call, as SLaks did
EDIT - I misread your braces, if you noticed the question I had here before you can disregard it.
本文标签: javascriptUncaught TypeError Object function ()Stack Overflow
版权声明:本文标题:javascript - Uncaught TypeError: Object function () - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743728889a2528843.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论