如何在web中实现类似excel的表格控件
2018-06-24 00:17:28来源:未知 阅读 ()
Execl功能非常强大,内置的很多函数或公式可以大大提高对数据的加工处理能力。那么在web中有没有类似的控件呢?经过一番搜寻,发现handsontable具备了基本的excel功能支持公式,同时能对数据进行实时编辑。另外支持拖动复制、Ctrl+C 、Ctrl+V 等等。在浏览器支持方面,它支持以下的浏览器: IE7+, FF, Chrome, Safari, Opera。
首先引入相关库文件,公式支持不包含在handsontable.full.js中,需要单独引入:
1 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/jquery/jquery-1.10.2.js"></script> 2 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/handsontable/handsontable.full.js"></script> 3 <link rel="stylesheet" media="screen" href="http://handsontable.github.io/handsontable-ruleJS/lib/handsontable/handsontable.full.css"> 4 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/lodash/lodash.js"></script> 5 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/underscore.string/underscore.string.js"></script> 6 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/moment/moment.js"></script> 7 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/numeral/numeral.js"></script> 8 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/numericjs/numeric.js"></script> 9 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/js-md5/md5.js"></script> 10 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/jstat/jstat.js"></script> 11 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/formulajs/formula.js"></script> 12 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/js/parser.js"></script> 13 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/js/ruleJS.js"></script> 14 <script src="http://handsontable.github.io/handsontable-ruleJS/lib/handsontable/handsontable.formula.js"></script>
在HTML中放置一个Div容器来存放handsontable控件:
1 <body> 2 <div id="handsontable-code"></div> 3 </body>
在javascript代码中,首先获取div容器,然后创建表格控件:
1 <script type="text/javascript"> 2 $(document).ready(function () { 3 4 var data1 = [ 5 ['=$B$2', "Maserati", "Mazda", "return 1+2;", 'return DataAccess.getScalar("select top 1 name from Cloud_Users where cellPhone=15895211486");', "=A$1"], 6 [2009, 0, 2941, 4303, 354, 5814], 7 [2010, 5, 2905, 2867, '=SUM(A4,2,3)', '=$B1'], 8 [2011, 4, 2517, 4822, 552, 6127], 9 [2012, '=SUM(A2:A5)', '=SUM(B5,E3)', '=A2/B2', 12, 4151] 10 ]; 11 12 13 function negativeValueRenderer(instance, td, row, col, prop, value, cellProperties) { 14 Handsontable.renderers.TextRenderer.apply(this, arguments); 15 16 var escaped = Handsontable.helper.stringify(value), 17 newvalue; 18 19 if (escaped.indexOf('return') === 0) { 20 //计算列为只读 21 //cellProperties.readOnly = true; 22 td.style.background = '#EEE'; 23 newvalue = document.createElement('span'); 24 $.ajax({ 25 //提交数据的类型 POST GET 26 type: "POST", 27 //提交的网址 28 url: "/services/CSEngine.ashx", 29 //提交的数据 30 data: { code: value, code2: escaped }, 31 //返回数据的格式 32 datatype: "html",//"xml", "html", "script", "json", "jsonp", "text". 33 //在请求之前调用的函数 34 //beforeSend: function () { $("#msg").html("logining"); }, 35 //成功返回之后调用的函数 36 success: function (data) { 37 // $("#msg").html(decodeURI(data)); 38 newvalue.innerHTML = decodeURI(data); 39 }, 40 //调用执行后调用的函数 41 complete: function (XMLHttpRequest, textStatus) { 42 //alert(XMLHttpRequest.responseText); 43 // alert(textStatus); 44 //HideLoading(); 45 }, 46 //调用出错执行的函数 47 error: function () { 48 //请求出错处理 49 // alert('error') 50 } 51 }); 52 53 54 Handsontable.Dom.addEvent(newvalue, 'mousedown', function (e) { 55 e.preventDefault(); // prevent selection quirk 56 }); 57 58 Handsontable.Dom.empty(td); 59 td.appendChild(newvalue); 60 } 61 // if row contains negative number 62 if (parseInt(value, 10) < 0) { 63 // add class "negative" 64 td.className = 'negative'; 65 } 66 67 68 } 69 70 71 72 //类似excel进行拖放,公式会变 73 var container1 = $('#handsontable-code'); 74 Handsontable.renderers.registerRenderer('negativeValueRenderer', negativeValueRenderer); 75 container1.handsontable({ 76 data: data1, 77 minSpareRows: 1, 78 colHeaders: true, 79 rowHeaders: true, 80 contextMenu: true, 81 manualColumnResize: true, 82 formulas: true, 83 cells: function (row, col, prop) { 84 var cellProperties = {}; 85 var escaped = Handsontable.helper.stringify(this.instance.getData()[row][col]); 86 if (escaped.indexOf('return')===0) { 87 cellProperties.renderer = "negativeValueRenderer"; 88 } 89 90 91 return cellProperties; 92 } 93 }); 94 95 }); 96 97 </script>
其中 =SUM(B5,E3)的公式是RuleJs提供的,return 1+2是自己实现的C#代码脚本,需要单击解析:
1 public class CSEngine : IHttpHandler { 2 private static int count = 0; 3 public void ProcessRequest (HttpContext context) { 4 context.Response.ContentType = "text/plain"; 5 6 try 7 { 8 count++; 9 string ret = ""; 10 string code = context.Request["code"].ToString(); 11 if (string.IsNullOrEmpty(code)) 12 { 13 ret = "参数错误"; 14 } 15 else 16 { 17 ScriptOptions options = ScriptOptions.Default 18 .AddReferences( 19 Assembly.GetAssembly(typeof(DBServices.DataAccess)) 20 ) 21 //.AddImports("System.Data") 22 //.AddImports("System.Data.SqlClient") 23 .AddImports("DBServices"); 24 var state = CSharpScript.RunAsync(code, options).Result.ReturnValue; 25 ret = state.ToString(); 26 27 state = null; 28 options = null; 29 } 30 Console.WriteLine(count); 31 context.Response.Write(ret); 32 } 33 catch(Exception ex) 34 { 35 //error 36 Console.WriteLine(count); 37 } 38 } 39 40 public bool IsReusable { 41 get { 42 return false; 43 } 44 } 45 46 }
运行代码,如下:
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:列表的响应式排版
下一篇:文本超出部分出现省略号
- 转行Web前端工程师要掌握的学习知识汇总 2020-06-10
- HTML基础教程_1 2020-06-09
- 转行WEB前端 感觉很迷茫 该怎么做? 2020-06-09
- 毕业生想学习web前端开发,有什么好的发展方向吗? 2020-06-09
- 2020年Web前端开发工程师市场怎么样?学会什么技术才能拿到 2020-06-06
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash