亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

javascript進階篇-9-22-改1

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>excel</title>
<script type="text/javascript">
window.onload=function(){
changeBGC();
}

function addOne(){
    var tr_nodes=document.getElementsByTagName("tr");
    var new_tr = document.createElement("tr");
    for(var i=0;i<2;i++){
    var new_td = document.createElement("td");
    new_td.innerHTML="<input type='text' />";
    new_tr.appendChild(new_td);
    }
    var new_td = document.createElement("td");
    new_td.innerHTML="<a href='javascript:;' onclick='removeTr(this)'>删除</a>";
    new_tr.appendChild(new_td);
    tr_nodes[0].parentNode.appendChild(new_tr);
        changeBGC();
}

function removeTr(obj){

    obj.parentNode.parentNode.parentNode.removeChild(obj.parentNode.parentNode);
}

function changeBGC(){
    var tag_trs = document.getElementsByTagName("tr");
    for(var i=1;i<tag_trs.length;i++){
        tag_trs[i].onmouseover=function(){
            this.style.backgroundColor="#f2f2f2";
        }
        tag_trs[i].onmouseout=function(){
            this.style.backgroundColor="#fff";
        }
    }
}

</script>
</head>

<body>
<table border="1" width="50%" id="table">
<tbody>
    <tr>
        <td>学号</td>
        <td>姓名</td>
        <td>操作</td>
    </tr>
        <td>xh001</td>
        <td>王小明</td>
        <td><a href="javascript:;" onclick="removeTr(this)">删除</a></td>
    <tr>
        <td>xh002</td>
        <td>刘小芳</td>
        <td><a href="javascript:;" onclick="removeTr(this)">删除</a></td>
    </tr>
</tbody>
</table>
<input type="button" value="添加一行" onclick="addOne()"/>
</body>
</html>
點擊查看更多內容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優質文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學習,寫下你的評論
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

舉報

0/150
提交
取消