OWC 显示和读取Excel数据

阅读更多

在网页中嵌入Excel:


    
        
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

 

Spreadsheet1.DisplayGridlines = false; 可以控制是否显示网格。

读取Excel内容:

var excelData = new Array();
		
var tempv;
var i,j;
var sht = Spreadsheet1.ActiveSheet;

for(i=1;i<=100;i++) {
	for(j=1;j<=150;j++) {
		try {
			tempv=sht.Cells(i,j).Value
			if(tempv != undefined ) {
				tempv=tempv.toString();
				if($.trim(tempv)!='' && $.trim(tempv)!='0') {
					var c = new Object();
					c.col = i.toString();
					c.row = j.toString();
					c.value = tempv;
					excelData.push(c);
				}
			}
		} catch(ex){ }
	}
}

你可能感兴趣的:(owc,office,web,components,excel)