分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

html5 contenteditable 实现table可编辑(网页版EXCEL)

发布时间:2023-09-06 02:32责任编辑:董明明关键词:暂无标签

一直想找一个免费的网页版的EXCEL插件,以便于多人共同在线编辑,始终没发现合适的。

其实自己实现类似功能也不难。参考:https://blog.csdn.net/chadcao/article/details/52014730

直接将以下代码存在本地目录中,如A.html,双击在浏览器中打开,即可对 姓名 字段进行编辑。

<!doctype html><html><head> ???<title>table contenteditable</title> ???<script type="text/javascript" src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> ???<script type="text/javascript"> ???????var students = [ ???????????{ ‘no‘: ‘S001‘, ‘name‘: ‘张三‘, ‘address‘: ‘浙江‘ }, ???????????{ ‘no‘: ‘S002‘, ‘name‘: ‘李四‘, ‘address‘: ‘江苏‘ }, ???????????{ ‘no‘: ‘S003‘, ‘name‘: ‘王五‘, ‘address‘: ‘福建‘ }, ???????????{ ‘no‘: ‘S004‘, ‘name‘: ‘马六‘, ‘address‘: ‘四川‘ } ???????]; ???????$(function () { ???????????InitStudents(); ???????}); ???????function InitStudents() { ???????????var html = ‘‘; ???????????$.each(students, function (i, item) { ???????????????html += ‘<tr>‘; ???????????????html += ‘<td>‘ + item.no + ‘</td>‘; ???????????????html += ‘<td><span contenteditable="true" class="studentname">‘ + item.name + ‘</span></td>‘; ???????????????html += ‘<td>‘ + item.address + ‘</td>‘; ???????????????html += ‘</tr>‘; ???????????}); ???????????$(‘#mainTbody‘).append(html); ???????} ???????function GetStudents() { ???????????var studentnames = ‘‘; ???????????$(‘#mainTbody span.studentname‘).each(function () { ???????????????studentnames += ‘【‘ + $(this).text() + ‘】‘; ???????????}); ???????????alert(studentnames); ???????} ???</script></head><body> ???<div><input type="button" value="确定" onclick="GetStudents();" /></div> ???<div style="margin-top:10px;"> ???????<table> ???????????<thead> ???????????????<tr> ???????????????????<td>学号</td> ???????????????????<td>姓名</td> ???????????????????<td>地址</td> ???????????????</tr> ???????????</thead> ???????????<tbody id="mainTbody"></tbody> ???????</table> ???</div></body></html>

html5 contenteditable 实现table可编辑(网页版EXCEL)

原文地址:https://www.cnblogs.com/pu369/p/10370027.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved