2014-05-22 85 views
2

我已經設法找出如何將數據從excel文件拉入HTML。Excel數據輸入到html輸出

我現在試圖看看如何搜索一組單元格中的值。有誰知道如何做到這一點?

在此先感謝!

+0

如果我的回答是沒有幫助的,我想我會需要一些更多的信息,你試圖搜索/反對的一個例子,以及你想要對結果做什麼。 – workabyte

回答

0
<html> 
<script> 
function mytest1() { 
var Excel, Book; // Declare the variables 
Excel = new ActiveXObject("Excel.Application"); // Create the Excel application object. 
Excel.Visible = false; // Make Excel invisible. 
Book = Excel.Workbooks.Add() // Create a new work book. 
Book.ActiveSheet.Cells(2,2).Value = document.all.my_textarea1.value; 
Book.SaveAs("C:/temp/TEST.xls"); 
Excel.Quit(); // Close Excel with the Quit method on the Application object. 
} 

function mytest2() { 
var Excel; 
Excel = new ActiveXObject("Excel.Application"); 
Excel.Visible = false; 
form1.my_textarea2.value = Excel.Workbooks.Open("C:/temp /TEST.xls").ActiveSheet.Cells(1,1).Value; 
Excel.Quit(); 
} 

</script> 

<body> 
<form name="form1"> 
<input type=button onClick="mytest1();" value="Send Excel Data"><input type=text  name="my_textarea1" size=70 value="enter ur data here"> 
<br><br> 
<input type=button onClick="mytest2();" value="Get Excel Data"><input type=text name="my_textarea2" size=70 value="no data collected yet"> 

</form> 
</body> 
</html> 
+0

不會在IE中起作用,除非用戶在其他瀏覽器上跳過一些箍來安裝活動x? – workabyte

0

jQuery可能會幫助你。當構建HTML時,我還會添加數據 - [somethingHelpfulWhenSearching]或添加可能有幫助的類值。

那麼你可以通過類

$('.[searchableClassName]') 

或數據屬性搜索項目:

$('[data-[somethingHelpfulWhenSearching]') //only looking that the tag exists 
$('[data-[somethingHelpfulWhenSearching]="something im looking for"') //only looking that the tag and checking the value 

希望這有助於