jquery學習第二期
接下來我們將繼續處理jQuery攻略一書中的問題
1.7 獲得一個元素的HTML代碼
解決方法 html()方法 以字元串方式返回 只能用於html文檔 顯示文本和標記
text()方法 以字元串格式返回 用於html 和 xml 文檔 只顯示文本
$(document).ready(function(){
alert($(p).html());
})
1.8 改變DOM節點的內容
text(text)方法
html(html)方法 (當然能動態改變標籤名)
$(document).ready(function(){
$(p).text(javascript);$(p).html(<b>javascript</b>);
})1.9 快速創建DOM節點
prepend()方法
prependTo()方法
clone()方法
append()方法
appendTo()方法
before()方法
insertBefore()方法
after()方法
insertAfter()方法
對於這些方法 大部分只是創建位置的不同,在這裡,僅以prepend方法 及 特殊的 clone()方法為例.
$(p).prepend(<h2>Power of selectors</h2>);n /*將<h2>標籤添加在p標籤之前*/n $(h2).clone().prependTo(p);n /*將<h2>標籤的副本添加在p標籤之前 這裡已包含了prependTo()方法的使用*/ n
推薦閱讀:
※類似於有道詞典的屏幕取詞功能可以用jQuery 實現嗎?
※通過w3school初步學習了html,css,js和jQ,自知自己對css,js,jQ的學習還不到位~該怎麼去提升?
※jquery獲取不到動態載入的dom元素是一種什麼樣的體驗?
TAG:jQuery |