博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
export table data in to Excel using jQuery
阅读量:5884 次
发布时间:2019-06-19

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

hot3.png

--html--

<button id="myButtonControlID">Export Table data into Excel</button>

<div id="divTableDataHolder">
<table>
    <tr><th>ColumnOne </th><th>ColumnTwo</th></tr>
<tr>
<td>row1ColValue1</td><td>row1ColValue2</td>
</tr>
<tr>
<td>row2ColValue1</td><td>row2ColValue2</td>
</tr>
</table>
</div>

------js---

$("[id$=myButtonControlID]").click(function(e) {

    window.open('data:application/vnd.ms-excel,' + encodeURIComponent( $('div[id$=divTableDataHolder]').html()));
    e.preventDefault();
});

转载于:https://my.oschina.net/u/1047983/blog/133080

你可能感兴趣的文章
我的友情链接
查看>>
hub-spoke Dynamic site-to-site peer and ××× Cliens
查看>>
十个1分钟换来健康,搞IT必看
查看>>
学好Java的10个建议
查看>>
mysql中的数据导入导出
查看>>
Java脚本:去除字符串中空值
查看>>
Open edX课程数据的存储方式
查看>>
将bean中的数据复制到map中
查看>>
https方式使用git@osc设置密码的方式
查看>>
种一颗树最好的时间是十年前,而后是现在
查看>>
身份证号码验证算法
查看>>
工厂模式
查看>>
15种独特能力让你在社会中鹤立鸡群
查看>>
Linux redhat5.5下 DNS服务(一)
查看>>
在线全部免费技术视频
查看>>
ubuntu安装maven
查看>>
老板喜欢哪10种员工?
查看>>
Lync Server 2010详解系列3:Lync Server的部署
查看>>
css选择器-基本选择器
查看>>
我的友情链接
查看>>