最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Uncaught TypeError: Object function () - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 9

You 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.

发布评论

评论列表(0)

  1. 暂无评论