我有一段 javascript 检查选项卡中是否存在指定的选项卡。当我将此代码插入到我的开源 etl 工具“pentaho”中时,它无法识别 ActiveXObject。这是因为我的 etl 工具使用的是 mozilla javascript 版本。有没有办法通过替代 ActiveXObject 来做到这一点?谢谢你。
main();
function main(){
var ExcelApp = new ActiveXObject("Excel.Application");
ExcelApp.Visible = false;
ExcelApp.DisplayAlerts = false
var filenamer="D:\\wo_etl\\Input Files.xlsx"
var ExcelBook=ExcelApp.Workbooks.open(filenamer, false, false);
ExcelBook.Sheets("Sheet1").Active
ExcelApp.DisplayAlerts = true
ExcelApp.Quit();}