亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery 版本的動態編輯表格 三

發布時間:2020-07-15 08:31:52 來源:網絡 閱讀:245 作者:huangyanxiong 欄目:web開發
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>練習</title>
</head>
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<style type="text/css">
    .user{
        color: #DFDFDF;
    }
    table {
    border: 1px solid black;
    /*修正單元格之間的邊框不能合并*/
    border-collapse: collapse;
    width:600px;
    }
    table td {
        border: 1px solid black;
        width: 25%;
    }
    table th {
        border: 1px solid black;
        width: 25%;
    }
    tbody th {
        background-color: #A3BAE9;
    }
</style>
<body>
    <div>
    <form name="form1" id="form1" >
        username:<input type="text" id="username" name='user'  />
        mail:<input type="text" id="mail" name="user" />
        phone:<input type="text" id="phone" name="user" />
        <input type="button" value="添加" id="add" />
    </form>
    </div>
    <div >
        <table  id="table">
            <tr>
                <th align="center" >username</th>
                <th align="center" >mail</th>
                <th align="center" >phone</th>
                <th align="center" >操作</th>
            </tr>
            <tr>
                <td align="center">huangyanxiong</td>
                <td align="center">huang@qq.com</td>
                <td align="center">12345678912</td>
                <td align="center">
                <input type="button" value="編輯" name="editInput">
                <input type="button" value="刪除" name="delInput">
                </td>
            </tr>
        </table>
    </div>
</body>
<script type="text/javascript">
    $(document).ready(function(){
        /*
            1版后話:這樣會存在一個問題就是表格中已經存在一些原有的表格行數據并且沒有按過添加按鈕時時就不能進行編輯和刪除,需要對代碼進行調整
            2版問題:這樣會造成點擊一次編輯或者刪除按鈕會變成兩次按鈕,而且代碼不能復用
            3版(this):利用函數解決代碼復用,但是jquery不支持這樣做
        */
        function  adduser(){
            var td=new Array();
            var editInput="<input type='button' value='編輯' name='editInput'/>";
            var delInput="<input type='button' value='刪除' name='delInput'/>";
            var i=0;
                  
            $("input[name='user']").each(function(){
                td[i]="<td align='center'>"+$(this).val()+"</td>";  //專門獲取屬性值
                i++;
            });
            $('#table').append('<tr>'+td.join('')+"<td align='center'>"+editInput+' '+delInput+"</td>"+'</tr>');
        }
        function delInput(){
            $("input[name='delInput']").click(function(){
                if (confirm('確定要刪除嗎')) {
                    $(this).parent().parent().remove();  //jquery最大特點可以自己刪除自己
                };
            });
        } 
        function editInput(){
            $("input[name='editInput']").click(function(){
                var i=1;
                if ($(this).val()=='編輯') {
                $(this).parent().siblings().each(function(){
                    $(this).html('<input type="text" value='+'"'+$(this).text()+'"'+''+' />');
                        i++;
                    });
                    $(this).val('保存');
                    return false;
                };
                if ($(this).val()=='保存') {
                    $(this).parent().siblings().each(function(){
                        $(this).text($(this).children().val());
                    i++;
                    });
                    $(this).val('編輯');
                    return false;
                };
            });
        }
        $('#add').click(function(){
            adduser();
            editInput();
            delInput();
        }
        editInput();
        delInput();
    });
</script>
</html>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌什县| 楚雄市| 承德县| 邓州市| 精河县| 奉贤区| 蓝田县| 从化市| 兴海县| 鞍山市| 桓台县| 于都县| 佛冈县| 南溪县| 什邡市| 若尔盖县| 万盛区| 菏泽市| 隆安县| 炉霍县| 德庆县| 合阳县| 蒲城县| 定南县| 扎鲁特旗| 府谷县| 临邑县| 大宁县| 佳木斯市| 三台县| 静乐县| 沾益县| 安顺市| 屏东市| 博湖县| 财经| 新巴尔虎左旗| 临清市| 浦城县| 怀远县| 海阳市|