1. js导入excel数据
1、进入Internet属性。
2、点击安全。
3、选择自定义级别。
4、把ActiveX控件和插件下的所有选项都改成启用。
5、服务器生成html格式的Excel,然后设置后台管理的功能:1、需要将excel表格中的数据一次性复制到html table中2、点击提交按钮,将table中的数据提交到服务器端进行处理。代码:
2. 导入Excel数据
1、打开excle,在选项栏里单击数据—导入外部数据—新建Web查询。
2、弹出来一个页面,勾选我可以识别此内容,允许播放,单击继续按钮。
3、在电脑的浏览器的地址栏输入需要复制的网站地址,转到此网站里面。
4、跳转到指定网页,点击箭头按钮,然后导入数据到Excel。
5、先前打开的Excel表格会生成数据,至此完成全部过程。
3. js表格数据导出excel
简单的办法:使用js生成一个table,可以直接复制到excel中,网上有很多表格插件复杂的办法:js传递数据到服务器,服务器生成表格后返回一个下载链接
4. 导出excel文件
、首先,打开Excel表格文件,在Excel程序主界面上方选择“文件”,点击打开“另存为”,点击打开。
二、然后,“保存文件”对话框中选择“保存类型”设置为“网页”,点击保存。
三、然后,在电脑上找到保存的“网页类型”文件,双击打开。
四、然后,在打开方式窗口中选择“Word程序”打开。
五、然后,在Word程序中奖文件另存为“Word格式”文件
六、最后,即可看到Excel文件转换为Word文件,问题解决。
5. js导出数据到excel
方法一:functionsaveCode(obj){varwinname=window.open('','_blank','top=10000')
;varstrHTML=document.all.tableExcel.innerHTML;winname.document.open('text/html','replace');winname.document.writeln(strHTML);winname.document.execCommand('saveas','','excel.xls');winname.close();
}方法二://Excel导出2/*
*如果javaScript报“Automation服务器不能创建对象”,则按下方解决。打开InternetExplorer“工具”菜单栏中的“选项”一栏,单击“安全”栏中的“自定义级别”选项卡,将第三项“对没有标记为安全的activex控件进行初始化和脚本运行”设置成“启用”即可。*/functionexportExecl(tableId){vartable=document.getElementById(tableId)
;varoXL=newActiveXObject("Excel.Application")
;varoWB=oXL.Workbooks.Add()
;varoSheet=oWB.ActiveSheet;varsel=document.body.createTextRange();sel.moveToElementText(table)
;sel.select();sel.execCommand("Copy");oSheet.P..
.方法一:functionsaveCode(obj){varwinname=window.open('','_blank','top=10000')
;varstrHTML=document.all.tableExcel.innerHTML;winname.document.open('text/html','replace')
;winname.document.writeln(strHTML)
;winname.document.execCommand('saveas','','excel.xls');winname.close();
}方法二://Excel导出2/*
*如果javaScript报“Automation服务器不能创建对象”,则按下方解决。打开InternetExplorer“工具”菜单栏中的“选项”一栏,单击“安全”栏中的“自定义级别”选项卡,将第三项“对没有标记为安全的activex控件进行初始化和脚本运行”设置成“启用”即可。*/functionexportExecl(tableId){vartable=document.getElementById(tableId)
;varoXL=newActiveXObject("Excel.Application")
;varoWB=oXL.Workbooks.Add()
;varoSheet=oWB.ActiveSheet;varsel=document.body.createTextRange();sel.moveToElementText(table)
;sel.select();sel.execCommand("Copy");oSheet.Paste();oXL.Visible=true;}这里的tableId为表格的id
6. js怎么导出excel
由于项目及业务需要,有时候一个页面会有n张报表,那么这个时候就需要一键导出功能(方便省事)
首先项目肯定要集成帆软报表工具,帆软的各种jar包以及静态资源(js,css)等也会集成到项目里。
直接上代码,(主要有两个方法)
function printReport(name, sex, age ){
var params="";
if(""!=name){
params+=",NAME:"+name;
}
if(""!=sex){
params+=",SEX:"+sex;
}
if(""!=age){
params+=",AGE:"+age;
}
var items="{reportlet:zxt/test/test1.cpt"+params+"}"
+",{reportlet:zxt/test/test2.cpt"+params+"}";
doExport(items);
}
function doExport(items){
var form =$("<form>");
form.attr('style','display:none');
form.attr('target', '');
form.attr('method', 'post');
form.attr('action',"${bmw}/ReportServer");
var input1 = $('<input>');
input1.attr('type', 'hidden');
input1.attr('name', 'reportlets');
input1.attr('value',FR.cjkEncode("("+items+")"));
var input2 = $('<input>');
input2.attr('type', 'hidden');
input2.attr('name', 'extype');
input2.attr('value', 'simple');
var input3 = $('<input>');
input3.attr('type', 'hidden');
input3.attr('name', 'format');
input3.attr('value', 'excel');
var input4 = $('<input>');
input4.attr('type', 'hidden');
input4.attr('name','__filename__');
input4.attr('value', '报表批量导出');
$('body').append(form);
form.append(input1);
form.append(input2);
form.append(input3);
form.append(input4);
form.submit();
}
${bmw} 指的是项目的访问路径,另外FR.cjkEncode()用的是帆软报表自带的方法,需要导入帆软提供的两个js文件
${bmw}/ReportServer?op=emb&resource=finereport.js&inter=zh_CN&__fr_locale__=&__v__=2017.01.20.14.49.47.271
${bmw}/ReportServer?op=emb&resource=finereport.chart.js&__v__=2017.01.20.14.49.47.271
然后调用printReport()方法就可以实现将多张报表导出到一个Excel文件里的多个sheet。
7. js excel导入
1、对于现有的Excel文件,首先应另存为 .csv文件,记住分割符(逗号分割),在后边导入用到。
2、用记事本打开保存后的csv文件,以utf-8格式另存为文件。不执行此编码格式,会在后续导入报错 。
ERROR: invalid byte sequence for encoding "UTF8": 0xcdf5
3、执行导入配置
(1)选择文件和格式 (2)选择要导入的字段,顺序要对应
(3)指定分隔符,即保存csv文件时使用的分隔符 (4) 执行导入
8. js导入excel表格
复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<meta name="generator" content="editplus" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<SCRIPT LANGUAGE="javascript">
<!--
function AutomateExcel()
{
// Start Excel and get Application object.
var oXL = new ActiveXObject("Excel.Application");
// Get a new workbook.
var oWB = oXL.Workbooks.Add();
var oSheet = oWB.ActiveSheet;
var table = document.all.data;
var hang = table.rows.length;
var lie = table.rows(0).cells.length;
// Add table headers going cell by cell.
for (i=0;i<hang;i++)
{
for (j=0;j<lie;j++)
{
//oSheet.Cells(i+1,j+1).Font.Bold = True
//oSheet.Cells(i+1,j+1).Font.Size = 50
//oSheet.Cells(i+1,j+1).Alignment = 2
oSheet.Cells(i+1,j+1).value = table.rows(i).cells(j).innerText;
}
}
oXL.Visible = true;
oXL.UserControl = true;
}
//-->
</SCRIPT>
</head>
<body>
<table border="1" width="100%" id="data">
<tr>
<td> 姓名</td>
<td colspan="2">年龄</td>
<td>出生日期</td>
</tr>
<tr>
<td>6</td>
<td>25</td>
<td colspan="2">8</td>
</tr>
<tr>
<td height="22">1</td>
<td height="22">2</td>
<td colspan="2" height="22">4</td>
</tr>
</table>
<input type="button" name="out_excel" onclick="AutomateExcel();" value="导出到excel" >
</body>
</html>
9. excel网页数据导入
这是IE浏览器的安全设置问题。
1、选择浏览器的主菜单“工具\Internet选项”。
2、在“Internet属性”对话框中选择“安全”页。点击“自定义级别”按钮,将其中的有关“ActiveX控件”的选项改为启用或提示。
3、完成以上操作
10. js导出excel
首先要把数据库中的数据想办法读出来,然后再在app中显示出来.读取数据需要先在网络服务器端使用PHP\JSP\ASP等服务器语言操作数据库获得数据,写一个查询接口,返回数据;app端使用ajax异步GET请求该数据,然后显示在APP页面上。也可以使用node.js在服务端读数据库。
- 相关评论
- 我要评论
-