4

我有这个代码:

<html>
  <script type="text/javascript">
    function test() {
      var Excel = new ActiveXObject("Excel.Application");
      Excel.Workbook.Open("teste.xlsx");
    }
  </script>

  <body>

    <form name="form1">
      <input type=button onClick="test();" value="Open File">
      <br><br>
    </form>

  </body>
</html>

所以主要问题是我不断收到这个错误:

On line 7 , Unable to get value of property Open
URL file:///C:/users/admin/desktop/test.hta
4

2 回答 2

7

首先,尝试将脚本移动到正文的底部。您还应该将Excel变量设置为可见。并且该行有一个错字Excel.Workbook.Open("teste.xlsx");(应该是Workbooks)。以下在 IE 中为我工作。我认为它不适用于其他浏览器:

<html>

  <body>

    <form name="form1">
      <input type=button onClick="test()" value="Open File">
      <br><br>
    </form>

    <script type="text/javascript">
      function test() {
        var Excel = new ActiveXObject("Excel.Application");
        Excel.Visible = true;
        Excel.Workbooks.Open("teste.xlsx");
      }
    </script>
  </body>
</html>
于 2013-03-06T12:17:17.753 回答
1

这适用于 IE 11,您必须在 Internet 选项中启用所有 ActiveX 控件。这将打开 excel 并打开您在工作表名称中提到的确切工作表。

<form name="form1">
  <input type=button onClick="test()" value="Open File">
  <br><br>
</form>

<script type="text/javascript">
  function test() 
  {  
    var Excel = new ActiveXObject("Excel.Application");  
    Excel.Visible = true; Excel.Workbooks.open("c:\\jeba\\sample.xlsx");  
    var excel_sheet = Excel.Worksheets("sheetname_1");  
    excel_sheet.activate();  
  }   
</script>

于 2019-11-21T20:17:25.490 回答