成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

jquery版本的動態(tài)編輯表格二

<!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" />
        <input type="reset" value='清除' id="reset" />
    </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版后話:這樣會存在一個問題就是表格中已經(jīng)存在一些原有的表格行數(shù)據(jù)并且沒有按過添加按鈕時時就不能進行編輯和刪除,需要對代碼進行調(diào)整
            2版問題(this):這樣會造成點擊一次編輯或者刪除按鈕會變成兩次按鈕,而且代碼不能復用
        */
            /*
                給添加按鈕定義一個點擊事件,并且獲取用戶值創(chuàng)建表格行進行存儲
            */
            $('#add').click(function(){
                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>');
            $('#reset').click();
            //console.info($('form[name="form1"]'));
            /*
                為刪除按鈕添加點擊事件并刪除表格行
            */
            $("input[name='delInput']").click(function(){
                if (confirm('確定要刪除嗎')) {
                    $(this).parent().parent().remove();  //jquery最大特點可以自己刪除自己
                };
            });
                 
            /*
                為刪除按鈕添加點擊事件并編輯和保存表格行
            */
            $("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;
                    };    
                });
            });
         
            /*
                為刪除按鈕添加點擊事件并刪除表格行
            */
            $("input[name='delInput']").click(function(){
                if (confirm('確定要刪除嗎')) {
                    $(this).parent().parent().remove();  //jquery最大特點可以自己刪除自己
                };
            });
                 
            /*
                為刪除按鈕添加點擊事件并編輯和保存表格行
            */
            $("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('保存');
                        alert(123456);
                        return false;
                    };
                    //alert(123456);
                    if ($(this).val()=='保存') {
                        $(this).parent().siblings().each(function(){
                            $(this).text($(this).children().val());
                        i++;
                        });
                        $(this).val('編輯');
                        return false;
                    };    
                });
    });
</script>
</html>

網(wǎng)頁名稱:jquery版本的動態(tài)編輯表格二
當前地址:http://jinyejixie.com/article24/ghojje.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、品牌網(wǎng)站建設、做網(wǎng)站、定制網(wǎng)站、網(wǎng)站設計、Google

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運營
黔西县| 元朗区| 马公市| 天全县| 平定县| 龙江县| 石城县| 建宁县| 绥棱县| 连云港市| 博罗县| 郴州市| 仙居县| 门头沟区| 迁西县| 卓尼县| 罗源县| 榕江县| 旌德县| 庆城县| 桦川县| 岚皋县| 平和县| 永靖县| 黄冈市| 黄骅市| 徐州市| 大悟县| 阳西县| 陆丰市| 太白县| 革吉县| 井陉县| 望江县| 鲁山县| 青浦区| 朝阳县| 汾阳市| 乌什县| 伊川县| 固安县|