用JavaScript完成Excel資料匯入

來源:互聯網
上載者:User

有些時候我們的網站提供給客戶資料匯入匯出功能,通常選擇媒介格式為xls,下面是用JavaScript完成對用戶端xls資料的載入:

<html><head> <title>Untitled</title> <script>function importXLS(fileName){   objCon = new ActiveXObject("ADODB.Connection"); objCon.Provider = "Microsoft.Jet.OLEDB.4.0"; objCon.ConnectionString = "Data Source=" + fileName + ";Extended Properties=Excel 8.0;"; objCon.CursorLocation = 1; objCon.Open; var strQuery; //Get the SheetName var strSheetName = "Sheet1$"; var rsTemp =  new ActiveXObject("ADODB.Recordset"); rsTemp = objCon.OpenSchema(20); if(!rsTemp.EOF)  strSheetName = rsTemp.Fields("Table_Name").Value;   rsTemp = null  rsExcel =  new ActiveXObject("ADODB.Recordset"); strQuery = "SELECT * FROM [" + strSheetName + "]"; rsExcel.ActiveConnection = objCon; rsExcel.Open(strQuery); while(!rsExcel.EOF) {  for(i = 0;i<rsExcel.Fields.Count;++i)  {   alert(rsExcel.Fields(i).value);  }  rsExcel.MoveNext;  }  // Close the connection and dispose the file objCon.Close; objCon =null; rsExcel = null;} </script></head><body><input type=file id=f><input type=button id=b value="import" onclick="if(f.value=='')alert('請選擇xls檔案');else importXLS(f.value)"></body></html>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.