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);