easyui 异常:Uncaught TypeError: Cannot read property 'tabs' of undefined

 function ttClick(n) {
    if (!$.isEmpty(n.attributes)) {
      var url = n.attributes ;
      addTab({
        border: false ,
        closable: false ,
        fit: true ,
        title: n.text ,
        content: ''
      });

    }
  }  function addTab(opts) {
      // 定位当前的tabs
      var t = top.$('#tt');
   // 判断tabs是否存在
      if (t.tabs('exists', opts.title)) {
          // 选中当前打开的tabs
          t.tabs('select', opts.title);
          // 更新当前打开的tabs
          t.tabs('update', {
              tab: t.tabs('getSelected')
              , options: opts
          });
      } else t.tabs('add', opts); // 添加tabs
  }

你可能感兴趣的:(easyui 异常:Uncaught TypeError: Cannot read property 'tabs' of undefined)