2

いくつかのテーブルを含む非常に単純な HTML ファイルを作成しています。基本的にリンクであるセル値を取得しようとしています。リンクをクリックして、特定のシートと行の Excel アプリケーションでファイルを開きたいです。

ノート:

  1. ウィンドウズ環境
  2. HTML は標準ブラウザで開かれます
  3. ファイルはローカルに存在します (単純なパス: C:\test.xlsx)
  4. Excel アプリケーションのパスが不明です
  5. HTML ファイルをできるだけシンプルに保ちたいと考えています。優れたデザインは最優先事項ではありません。それを実現するだけです。
  6. (優先度低) Excel インスタンス (特定のファイル用) が既に開いている場合、アクティブ シートを変更し、開いているインスタンスの行を強調表示したい
4

2 に答える 2

1
<HTML>
<HEAD>
<Title>Excel Linking Example</Title>
</HEAD>
<body>
<p>
<a href="http://localhost/excel/asheet.xls#Sheet2!D4">
This link will open the Excel file to the second page with the focus on
cell D4</a>.
<a href="http://localhost/excel/asheet.xls#TableName">
This link will set the focus on a named area of the spreadsheet
</a>.
</p>
<form>
<input type=button
 value="Via Jscript"
 onclick='location.href = "asheet.xls#TableName"'>
</form>
</body>
</html>

ソース: http://support.microsoft.com/kb/197922

于 2013-01-23T19:12:32.403 に答える
1

JavaScriptを使用して解決しました:

<script type="text/javascript">
    function open_excel_file(path,sheet,f_range)
      {

        if (!window.ActiveXObject)
        {
          alert ("Your browser does not support this feature.\n"
                 "Please re-open this file using IE browser.");
          return;
        }

        fso = new ActiveXObject("Scripting.FileSystemObject");

        if (!fso.FileExists(path))
          alert("Cannot open file.\nFile '" + path + "' doesn't exist.");

        else
         {
           var myApp = new ActiveXObject("Excel.Application");

           if (myApp != null)
             {
               myApp.visible = true;
               Book = myApp.workbooks.open(path);
               var excel_sheet = Book.Worksheets(sheet).Activate;
               myApp.range(f_range).Select;
             }

           else {
             alert ("Cannot open Excel application");
           }
         }
      }
 </script>

使用例:

<button onclick="open_excel_file('f1.csv', 's1', 'A1:Z7');">Open</button>
于 2013-07-01T09:52:11.397 に答える