码迷,mamicode.com
首页 > 其他好文 > 详细

单击列表修改其内容(前端部分)

时间:2019-11-25 18:04:31      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:ext   first   doctype   ntb   cli   var   focus   document   move   

前端做假修改(只更改显示数据),实际更改数据(更改数据库)后台执行。

当前代码段为前端代码展示:

HTML:

test.html

<!DOCTYPE html>

<html class="no-js">
<!--<![endif]-->
<head>
    <script src="js/test.js"></script>
<style>
    td {
        border:solid 1px;
        width:200px;
        height:auto;
        text-align:center;
    }

</style>
</head>
<body>
    <table>
        <tr>
            <td οnclick="test(this)">test1</td>
            <td οnclick="test(this)">test2</td>
        </tr>
        <tr>
            <td οnclick="test(this)">test1</td>
            <td οnclick="test(this)">test2</td>
        </tr>
    </table>
</body>
</html>
JS:

test.js

var firstValue = "";
var nowDom = "";//当前操作的td
//点击更改事件
function test(doms) {
doms.removeAttribute("onclick");
nowDom = doms;
var text = doms.innerText;
doms.innerHTML = ‘<input type="text" value="‘ + text + ‘" id="input" οnchange="chane(this)" οnblur="inputOnblur(this)"/>‘;
firstValue = text;
document.getElementById("input").focus();
}

//文本框更改事件
function chane(doms) {
var text = doms.value;
if (text != firstValue) {
//提交后台更改数据库

//前端操作
nowDom.innerHTML = ""+text;
nowDom.setAttribute("onclick", "test(this)");
}
}

//文本框失焦事件
function inputOnblur(doms) {
var text = doms.value;
if (text != firstValue) {
//提交后台更改数据库
}
nowDom.innerHTML = "" + text;
nowDom.setAttribute("onclick", "test(this)");
}
 

原理就是点击时讲文本改成输入框即可! 

单击列表修改其内容(前端部分)

标签:ext   first   doctype   ntb   cli   var   focus   document   move   

原文地址:https://www.cnblogs.com/aaron95/p/11929102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!