Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ajax/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 如何在单元格内读取单元格值:函数(行、列、列)函数_Jquery_Cell_Handsontable_Tr - Fatal编程技术网

Jquery 如何在单元格内读取单元格值:函数(行、列、列)函数

Jquery 如何在单元格内读取单元格值:函数(行、列、列)函数,jquery,cell,handsontable,tr,Jquery,Cell,Handsontable,Tr,我有一个使用该功能的掌上电脑 cells: function (row, col, prop) { var cellProperties; //Read values return cellProperties; } } 我有5行4列 我想读取值R1C4、R1C4、R1C3、R1C4。函数单元格内部:函数(行、列、列) 如何使用cells:function(行、列、属性)读取单元格值 使用此选项可调用HandsOnTables的任

我有一个使用该功能的掌上电脑

cells: function (row, col, prop) {
      var cellProperties;

      //Read values

        return cellProperties;
      }
    }
我有
5行4列

我想读取值
R1C4、R1C4、R1C3、R1C4
。函数
单元格内部:函数(行、列、列)

如何使用
cells:function(行、列、属性)读取单元格值

使用此选项可调用HandsOnTables的任何函数。
有关更多信息,请访问

cells: function (row, col, prop) {
  var cellProperties;
  //Read values
  var someVar = this.getData(1, 4, 1, 4); //getData take data from an init to an end, just like select cells in Excel
  console.log(someVar);
  return cellProperties;
  }
}