gpt4 book ai didi

javascript - 使用本地数据加载handsontable失败

转载 作者:行者123 更新时间:2023-12-03 11:08:24 25 4
gpt4 key购买 nike

我正在尝试使用http://jsfiddle.net/kc11/y66uc1cq/加载一些我已包含在可手动 View 中的数据。虽然JS是有效的:

$(document).ready(function () {

function getCarData() {
return [
["Nissan", 2009, "black", "black"], ["Nissan", 2006, "blue", "blue"], ["Chrysler", 2004, "yellow", "black"], ["Volvo", 2012, "white", "gray"]];
}

var data = [
["", "Kia", "Nissan", "Toyota", "Honda"],
["2008", 10, 11, 12, 13],
["2009", 20, 11, 14, 13],
["2010", 30, 15, 12, 13]
];




$("#example1").handsontable({
data: data,
minRows: 5,
minCols: 6,
minSpareRows: 1,
currentRowClassName: 'currentRow',
currentColClassName: 'currentCol',
autoWrapRow: true,
rowHeaders: true,
colHeaders: true
});


$("#example1").handsontable('selectCell', 3, 3);





});

没有发生负载。为什么以及如何解决这个问题?

最佳答案

很难测试,因为 fiddle 中的所有引用都已损坏,但请尝试以下操作:

var table = new Handsontable($("#example1"), {
data: data,
minRows: 5,
minCols: 6,
minSpareRows: 1,
currentRowClassName: 'currentRow',
currentColClassName: 'currentCol',
autoWrapRow: true,
rowHeaders: true,
colHeaders: true
});
table.render();

来源:http://handsontable.com/demo/understanding_reference.html

关于javascript - 使用本地数据加载handsontable失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27724738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com