我一直在尝试,但我做不到。请我需要在我的 html 中读取/显示一个特定的单元格,就像另一个文本一样。我正在使用这个:
function readData()
{
var excel=new ActiveXObject("Excel.Application");
var book=excel.Workbooks.open("http://142.116.39.71/Produ.xls");
var sheet=book.Worksheets.Item(1);
/*var data=sheet.Cells(x,y).Value;
var data=book.ActiveSheet.Cells("");
return data();*/
excel.quit();
excel.application.quit();
excel = null;
book = null;
sheet = null;
CollectGarbage();
}
value=readData("E,18");
//var value=readData("E18", "E18");
document.write("Value from Excel file is "+value);
但是.....我有这个:Value from Excel file is undefined