TypeError:t.addEventListener不是Handsontable和jQuery的函数

时间:2017-02-26 12:19:05

标签: javascript jquery handsontable

在使用Handsontable与jQuery和React时,我遇到了一些错误。我正在追赶

TypeError: t.addEventListener is not a function

在控制台中我得到了:

Uncaught TypeError: Cannot read property 'offsetLeft' of undefined

由onMouseMove抛出。

我正在设置这样的动手:

import Handsontable from 'handsontable/dist/handsontable.full';
const $ = require('jquery');

function createTable(data){
    const container = $(myContainer);
    const hotContainer = container.find('.myTable');
    console.log(hotContainer);
    const datatable = Handsontable(hotContainer, {
    colHeaders: true,
    });
    datatable.loadData(data.records);
}
module.exports = createTable;

console.log(hotContainer)返回Object,因此它存在。

关于我可能做错什么或不做的任何想法?

0 个答案:

没有答案