博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTML save data to CSV or excel
阅读量:6141 次
发布时间:2019-06-21

本文共 3688 字,大约阅读时间需要 12 分钟。

/********************************************************************************* *                     HTML save data to CSV or excel * 说明: *     将网页内容保存到csv文件或者execl中。 * *                                              2017-10-28 深圳 南山平山村 曾剑锋 ********************************************************************************/一、参考文档:    1. store data from a form using just HTML        https://stackoverflow.com/questions/14360769/store-data-from-a-form-using-just-html    2. Write to CSV file locally with HTML5        https://stackoverflow.com/questions/27013963/write-to-csv-file-locally-with-html5    3. Web导出excel的几种方法        http://taote.iteye.com/blog/842496    4. JS直接导出excel 兼容ie、chrome、firefox        http://blog.csdn.net/sinat_15114467/article/details/51098522    5. How do I export html table data as .csv file?        https://stackoverflow.com/questions/7161113/how-do-i-export-html-table-data-as-csv-file二、原理:    data协议方式:对于支持data协议的浏览器,可以将html或是csv先用js base64处理,然后前缀data:application/vnd.ms-excel;base64,,即可使浏览器将其中的数据当做excel来处理,浏览器将提示下载或打开excel文件,可惜的是ie不支持。extjs的官网有一个grid的plugin,实现导出xhtml格式的伪excel文件,就是这么做的。三、Example                    
HTML Form Data to Excel
QMS Assessment
No Criteria Question Score
Q1 Quality Unit Independency Do you have the Quality Unit?
Q2 Apply PICS GMP Which GMP regulation do you use?
Q3 Deviation or Non-conformance Do you have a deviation or non-conformance procedure?
Q4 Complaint Do you have a customer complaint procedure?

 

转载于:https://www.cnblogs.com/zengjfgit/p/7747439.html

你可能感兴趣的文章
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>