Heim  >  Artikel  >  Web-Frontend  >  Importieren Sie Daten mithilfe von Javascript_Javascript-Kenntnissen in Excel-Beispielcode

Importieren Sie Daten mithilfe von Javascript_Javascript-Kenntnissen in Excel-Beispielcode

WBOY
WBOYOriginal
2016-05-16 16:36:46895Durchsuche

Code online gesammelt

<input type="button" name="out_excel" onclick="AutomateExcel();" value="导出到excel" class="notPrint">

In Excel-Code exportieren

<SCRIPT LANGUAGE="javascript"> 
<!-- 
function AutomateExcel() 
{ 
// Start Excel and get Application object. 
var oXL = new ActiveXObject("Excel.Application"); 
// Get a new workbook. 
var oWB = oXL.Workbooks.Add(); 
var oSheet = oWB.ActiveSheet; 
var table = document.all.data; 
var hang = table.rows.length;

var lie = table.rows(0).cells.length;

// Add table headers going cell by cell. 
for (i=0;i<hang;i++) 
{ 
for (j=0;j<lie;j++) 
{ 
//oSheet.Cells(i+1,j+1).Font.Bold = True 
//oSheet.Cells(i+1,j+1).Font.Size = 50 
//oSheet.Cells(i+1,j+1).Alignment = 2
oSheet.Cells(i+1,j+1).value = table.rows(i).cells(j).innerText; 
}

} 
oXL.Visible = true; 
oXL.UserControl = true; 
} 
//-->
</SCRIPT>
<table border="1" width="100%" id="data">
<tr>
<td> 姓名</td>
<td colspan="2">年龄</td>
<td>出生日期</td>
</tr>
<tr>
<td>6</td>
<td>25</td>
<td colspan="2">8</td>
</tr>
<tr>
<td height="22">1</td>
<td height="22">2</td>
<td colspan="2" height="22">4</td>
</tr>
</table>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn