0

我一直在尝试,但我做不到。请我需要在我的 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

4

2 回答 2

1

您的函数没有返回任何值。取消注释代码并将代码更正为是return data;和不是return data();

于 2011-03-24T23:35:56.073 回答
0

并且您没有将参数传递给函数 readData(x,y) 并且您没有声明变量“值” var value = readData("E","18");

多个语法错误

于 2011-03-24T23:50:49.153 回答