Home > Web Front-end > JS Tutorial > body text

js realizes editing by clicking the button

不言
Release: 2018-07-05 17:12:06
Original
2176 people have browsed it

This article mainly introduces the js implementation of clicking the button to edit. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it

<script type="text/javascript">
//修改密码
//抓取到的数据
   function edit() {
       document.getElementById("ps").style.display = "none";
       document.getElementById("pw").style.display = "";
       document.getElementById("of").style.display = "";
       var butt = document.getElementById("btt");
       butt.value = "修 改";
       butt.onclick = function () {
           save();//第二次单击的时候执行这个函数
       };
   }
//取消健
   function off() {
   	var pass = document.getElementById(&#39;ps&#39;);
       var pws = document.getElementById("pw");
       var butt = document.getElementById("btt");
       document.getElementById("of").style.display = "none",
       butt.value = "编 辑";
       pws.style.display = "none";
       pass.innerHTML = pws.value;
       pass.style.display = "";
       butt.onclick = function () {
           edit();//还原第一次单击的时候执行的函数
       };
   }
//编辑之后的状态
   function save() {
       var pass = document.getElementById(&#39;ps&#39;);
       var pws = document.getElementById("pw");
       var butt = document.getElementById("btt");
       butt.setAttribute("type","submit");
       butt.value = "编 辑";
       pws.style.display = "none";
       pass.innerHTML = pws.value;
       pass.style.display = "";
       butt.onclick = function () {
           edit();//还原第一次单击的时候执行的函数
       };
   }
</script>
</p>
<form action="oneself.php" method="post">
<p style="font: 16px &#39;宋体&#39;;">姓名: <input type="text" name="name" value="张三" /></p>
<p style="font: 16px &#39;宋体&#39;;">账号: <input type="text" name="handset" value="13888888888" /></p>
<p style="font: 16px &#39;宋体&#39;;">密码: <span id="pass" style="border: 1px solid gray; width: 200px;">888888</span> <textarea id="ei" style="display: none;" name="newpass">888888</textarea> <input id="btt" onclick="edit();" type="button" name="btt" value="编 辑" /> <input id="of" style="display: none;" onclick="off();" type="button" name="of" value="取 消" /></p>
</form>
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's learning. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

jquery realizes the effect of horizontal scrolling of images

Javascript native encapsulation function test of fade-in and fade-out effect

The above is the detailed content of js realizes editing by clicking the button. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!