jQuery html() 方法 jQuery height() 方法 jQuery innerHeight() 方法 jQuery html() 方法 实例 改变所有 <p> 元素的内容: $("button").click(function(){ $("p").html("Hello <b>world</b>!"); }); 试一试 定义和用法 html() 方法设置或返回被选元素的内容(innerHTML)。 当该方法用于 返回 内容时,则返回第一个匹配元素的内容。 当该方法用于 设置 内容时,则重写所有匹配元素的内容。 提示: 如只需设置或返回被选元素的文本内容,请使用 text() 方法。 语法 返回内容: $( _selector_ ).html() 设置内容: $( _selector_ ).html( _content_ ) 使用函数设置内容: $( _selector_ ).html(function _(index,currentcontent)_ ) 参数 描述 _content_ 必需。规定被选元素的新内容(可包含 HTML 标签)。 function( _index,currentcontent_ ) 可选。规定返回被选元素的新内容的函数。 * _index_ \- 返回集合中元素的 index 位置。 * _currentcontent_ \- 返回被选元素的当前 HTML 内容。 更多实例 返回元素内容 如何返回元素的内容。 使用函数设置元素内容 使用函数来设置所有被选元素的内容。 jQuery height() 方法 jQuery innerHeight() 方法