html()
取得第一個匹配元素的html內容。這個函數不能用於XML文檔。但可以用於XHTML文檔。
Get the html contents of the first matched element. This property is not available on XML documents (although it will work for XHTML documents).
返回值
String
示例
代碼如下:
HTML 代碼:
<div><p>Hello</p></div>
jQuery 代碼:
$("div").html();
結果:
Hello
html(val)
設置每一個匹配元素的html內容。這個函數不能用於XML文檔。但可以用於XHTML文檔。
Set the html contents of every matched element. This property is not available on XML documents (although it will work for XHTML documents).
返回值
jQuery
參數
val (String) : 用於設定HTML內容的值
示例
代碼如下:
HTML 代碼:
<div></div>
jQuery 代碼:
$("div").html("<p>Hello Again</p>");
結果:
[ <div><p>Hello Again</p></div> ]