forked from sheetjs/sheetjs
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <!-- xlsx.js (C) 2013-present  SheetJS http://sheetjs.com -->
 | |
| <!-- vim: set ts=2: -->
 | |
| <html>
 | |
| <head>
 | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 | |
| <title>SheetJS Live Demo</title>
 | |
| <style>
 | |
| #drop{
 | |
| 	border:2px dashed #bbb;
 | |
| 	-moz-border-radius:5px;
 | |
| 	-webkit-border-radius:5px;
 | |
| 	border-radius:5px;
 | |
| 	padding:25px;
 | |
| 	text-align:center;
 | |
| 	font:20pt bold,"Vollkorn";color:#bbb
 | |
| }
 | |
| #b64data{
 | |
| 	width:100%;
 | |
| }
 | |
| a { text-decoration: none }
 | |
| </style>
 | |
| </head>
 | |
| <body>
 | |
| <pre>
 | |
| <b><a href="http://sheetjs.com">SheetJS Data Preview Live Demo</a></b>
 | |
| (Base64 text works back to IE6; drag and drop works back to IE10)
 | |
| 
 | |
| <a href="https://github.com/SheetJS/js-xlsx">Source Code Repo</a>
 | |
| <a href="https://github.com/SheetJS/js-xlsx/issues">Issues?  Something look weird?  Click here and report an issue</a>
 | |
| Output Format: <select name="format" onchange="setfmt()">
 | |
| <option value="csv" selected> CSV</option>
 | |
| <option value="json"> JSON</option>
 | |
| <option value="form"> FORMULAE</option>
 | |
| <option value="html"> HTML</option>
 | |
| </select><br />
 | |
| <div id="drop">Drop a spreadsheet file here to see sheet data</div>
 | |
| <input type="file" name="xlfile" id="xlf" /> ... or click here to select a file
 | |
| 
 | |
| <textarea id="b64data">... or paste a base64-encoding here</textarea>
 | |
| <input type="button" id="dotext" value="Click here to process the base64 text" onclick="b64it();"/><br />
 | |
| <b>Advanced Demo Options:</b>
 | |
| Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" checked>
 | |
| </pre>
 | |
| <pre id="out"></pre>
 | |
| <div id="htmlout"></div>
 | |
| <br />
 | |
| <script src="./index.js"></script>
 | |
| </body>
 | |
| </html>
 |