我正在使用javascript
andactiveX
来保存和编辑 Excel 文档的数据。到目前为止一切正常。但现在我想编写一个新版本,我可以在其中更新特定单元格并将其他单元格保留在原处。
这是我正在使用的代码:
function Write() {
var Excel, Book; // Declare the variables
Excel = new ActiveXObject("Excel.Application"); // Create the Excel application object.
Excel.Visible = false; // Make Excel invisible.
Book = Excel.Workbooks.Add() // Create a new work book.
Book.ActiveSheet.Cells(1,1).Value = document.A1.value;
Book.SaveAs("G:/whiteboard.xls");
Excel.Quit(); // Close Excel with the Quit method on the Application object.
alert("Uppgifter sparade");
}
我想保存,而不是 saveAs。
有任何想法吗?