码迷,mamicode.com
首页 > Web开发 > 详细

jQuery导出Excel格式

时间:2018-12-18 19:47:11      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:value   key   ber   family   打开   type   base64   bsp   ==   

1、问题背景

     将一个表格的数据导出到Excel中,保证不出现中文乱码

 

2、实现源码

 

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>导出Excel格式</title>
		<script type="text/javascript" src="js/jquery-1.12.3.js" ></script>
		<script type="text/javascript" src="js/jquery.base64.js" ></script>
		<script type="text/javascript" src="js/tableExport.js" ></script>
		<script type="text/javascript" src="js/jspdf/libs/sprintf.js" ></script>
		<script type="text/javascript" src="js/jspdf/jspdf.js" ></script>
		<script type="text/javascript" src="js/jspdf/libs/base64.js" ></script>
		<style>
			html,body{
				width: 99%;
				height: 99%;
				font-family: "微软雅黑";
				font-size: 12px;
			}
			#tables{
				width: 100%;
				text-align: center;
				border: 1px #000 solid;
				border-collapse: collapse;
			}
			#tables th,#tables td{
				border: 1px solid #000000;
			}
			#tables th{
				font-size: 14px;
				font-weight: bolder;
			}
		</style>
		<script>
			$(document).ready(function(){
				$("#exportData").click(function(){
					//导出
					$("#tables").tableExport({type:"excel",escape:"false"});
				});
			});
		</script>
	</head>
	<body>
		<table id="tables">
			<thead>
				<tr>
					<th>姓名</th>
					<th>性别</th>
					<th>年龄</th>
					<th>地址</th>
			</thead>
			<tbody>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
				<tr>
					<td>张三</td>
					<td></td>
					<td>34</td>
					<td>湖北省武汉市</td>
				</tr>
			</tbody>
		</table>
		<input type="button" id="exportData" value="导出"/>
	</body>
</html>

3、实现结果

(1)初始化

技术分享图片

 

(2)点击导出

技术分享图片

 

(3)打开Excel

技术分享图片

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!希望你也加入到我们人工智能的队伍中来!http://www.captainbed.net

jQuery导出Excel格式

标签:value   key   ber   family   打开   type   base64   bsp   ==   

原文地址:https://www.cnblogs.com/odejsjhshw/p/10138739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!