jquery動態添加節點,jquery動態節點

來源:互聯網
上載者:User

jquery動態添加節點,jquery動態節點

<1>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>    <title></title>    <script src="http://localhost:41928/Jquery/jquery-1.10.2.js" type="text/javascript"></script>    <script type="text/javascript">        $(function () {            var link = $("<a href='http://www.baidu.com'>百度</a>"); //建立一個節點            $("div:first").append(link); //將link節點添加到第一個div中            var link = $("<a href='http://www.google.com.hk'>Google</a>"); //重新建立一個節點            $("div:last").append(link); //將link節點添加到最後一個div中        })        //======================================================================================        //定義一個字典風格的數組        var data = { "百度": "http://www.baidu.com", "新浪": "http://www.sina.com.cn", "搜狐": "http://www.sohu.com" };        $(function () {            $.each(data, function (key, value) {  //遍曆這個數組,調用匿名函數進行處理                var link = $("<tr><td><a href=" + value + ">" + key + "</a></td></tr>"); //建立一個節點                $("#table1").append(link); //將這個節點加入到table中            })        })            </script></head><body><div></div><div></div><table id="table1"></table></body></html>



怎使用jquery動態產生並建立多個節點?

//建立節點
var createobj=jQuery("<div>建立的節點,需要載入到頁面上才會顯示喲</div>");
//將建立的節點加到頁面的最後面
jQuery("body").append(createobj);

//建立節點
var createobj=jQuery("<div>建立的節點,<span color='red'>建立新節點的子節點</span>需要載入到頁面上才會顯示喲</div>");
//將建立的節點加到頁面的最後面
jQuery("body").append(createobj);
 
jquery js添加節點 刪除節點

你可以像這樣,建立一個節點,並且綁定好事件,然後才append
var node = document.createElement("a");
node.innerHTML = "點擊刪除";
node.onclick = function(){
$(this).remove();

};
$("#div").append(node);
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.