代码驿站移动版
频道导航
HTML/Xhtml
CSS
JavaScript
HTML5
PHP教程
ASP.NET
正则表达式
AJAX
ThinkPHP
Yii
MySQL
MariaDB
Oracle
MongoDB
Redis
DedeCMS
PHPCMS
帝国CMS
WordPress
Discuz
其它CMS
Zend Studio
Sublime
Notepad
Dreamweaver
Windows
Linux
Nginx
Apache
IIS
CentOS
Ubuntu
Debian
网站优化
工具资源
PHP源码
ASP.NET源码
其它源码
图标素材
按钮素材
字体素材
DedeCMS模板
帝国CMS模板
PHPCMS模板
WordPress模板
Discuz!模板
单页模板
开发软件下载
服务器软件下载
广告投放
联系我们
版权申明
软件编程
网页前端
移动开发
数据库
服务器
脚本语言
PHP代码
JAVA代码
Python代码
Android代码
当前位置:
主页
>
网页前端
>
JavaScript代码
>
JavaScript 就地编辑HTML节点实现代码
时间:2021-10-17 09:12:07 | 栏目:
JavaScript代码
| 点击:次
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>点击编辑当前内容</title> <script type="text/javascript"> var EditField={ configure:function(id){ this.id=id; this.createElements(); //动态生成编辑输入框 this.toScan(); //初始化动态生成的输入框和按钮、待编辑的DOM元素的display属性 this.addEvents(); //给相关的DOM元素添加事件监听器 }, events:function(elem,type,fn){ //用于添加事件的通用函数 if(elem.attachEvent){ elem.attachEvent("on"+type,fn); }else if(elem.addEventListener){ elem.addEventListener(type,fn,false); }else{ elem["on"+type]=fn; } return elem; }, addEvents:function(){ //添加事件 var that=this; this.events(this.btnSubmit,"click",function(){ that.save(); }); this.events(this.btnCancel,"click",function(){ that.cancel(); }); this.events(document.getElementById(this.id),"click",function(){ that.toEdit(); }); }, insertAfter:function(newNode,referenceNode){ //将动态生成的输入框和按钮插入到待编辑元素的后面 if (referenceNode.nextSibling) { referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); }else{ var p=referenceNode.parentNode || document.body; p.appendChild(newNode); } }, createElements:function(){ //动态生成输入框和按钮 this.divContainer=document.createElement("div"); //this.parentElement.appendChild(this.divContainer); this.insertAfter(this.divContainer,document.getElementById(this.id)); this.input=document.createElement("input"); this.input.type="text"; this.input.value=document.getElementById(this.id).innerHTML; //初始化值 this.divContainer.appendChild(this.input); this.btnSubmit=document.createElement("input"); this.btnSubmit.value="Submit"; this.btnSubmit.type="button"; this.divContainer.appendChild(this.btnSubmit); this.btnCancel=document.createElement("input"); this.btnCancel.type="button"; this.btnCancel.value="Cancel"; this.divContainer.appendChild(this.btnCancel); }, toEdit:function(){ //转换成编辑状态 this.divContainer.style.display="block"; document.getElementById(this.id).style.display="none"; this.setValue(); }, toScan:function(){ //转换成浏览状态 document.getElementById(this.id).style.display="block"; this.divContainer.style.display="none"; }, getValue:function(){ //获取输入框的值 return this.input.value; }, setValue:function(){ //设置输入框的值 this.input.value=document.getElementById(this.id).innerHTML; }, save:function(){ //保存编辑结果 document.getElementById(this.id).innerHTML=this.getValue(); this.toScan(); }, cancel:function(){ //取消当前的编辑 this.toScan(); } }; onload=function(){ EditField.configure("p"); //调用configure函数,确定那个DOM元素进行就地编辑 } </script> </head> <body> <h3>Edit Demo</h3> <p id="p">脚本之家 www.jb51.net</p> <p>Copyright:Super sha.</p> </body> </html>
[Ctrl+A 全选 注:
引入外部Js需再刷新一下页面才能执行
]
您可能感兴趣的文章:
JavaScript常见事件处理程序实例总结
Javascript的匿名函数小结
url传递的参数值中包含&时,url自动截断问题的解决方法
Javascript别踩白块儿(钢琴块儿)小游戏实现代码
兼容浏览器的js事件绑定函数(详解)
相关文章
10-19
javascript上下左右定时滚动插件
11-23
Webpack中loader打包各种文件的方法实例
11-27
Javascript实例教程(19) 使用HoTMetal(2)
10-05
javascript判断图片是否加载完成的方法推荐
11-22
在javascript中执行任意html代码的方法示例解读
JQuery
VUE
AngularJS
MSSql
MySQL
MongoDB
Redis
Linux
Tomcat
Nginx
网站首页
广告投放
联系我们
版权申明
联系站长