我在JavaScript中有这段代码
a= Excel.Workbooks.open("C:/work/ind12.xls").ActiveSheet.Cells.find("value");
alert(a);
Excel.close();
Excel = new ActiveXObject("Excel.Application");
Excel.Visible = false;
alert( Excel.Workbooks.Open("C:/work/index.xls").ActiveSheet.Cells(1,1).Value);
Excel.Quit();
这给了我excel文件的值,如果它与excel中的值匹配则显示值为Null,但我也想得到该值的索引,有没有办法获取该索引值。
谢谢
答案 0 :(得分:0)
当你说索引时,你是指该值所在的行吗?
var excel = new ActiveXObject("Excel.Application");
var wb = excel.Workbooks.Open("C:/work/ind12.xls");
var ws = wb.ActiveSheet;
var cell = ws.Cells.Find("value");
alert(cell.Row);
excel.Quit();
您可以从Microsoft's documentation找到有关如何自动化Excel的更多信息。