jQuery html() 方法

  • 定义和用法

    html() 方法设置或返回被选元素的内容(innerHTML)。
    当该方法用于返回内容时,则返回第一个匹配元素的内容。
    当该方法用于设置内容时,则重写所有匹配元素的内容。
    提示:如只需设置或返回被选元素的文本内容,请使用 text() 方法。
  • 语法

    返回内容:
    $(selector).html()
    设置内容:
    $(selector).html(content)
    使用函数设置内容:
    $(selector).html(function(index,currentcontent))
  • 参数描述

    参数 描述
    content 必需。规定被选元素的新内容(可包含 HTML 标签)。
    function(index,currentheight)
    可选。规定返回被选元素的新内容的函数。
    • index - 返回集合中元素的 index 位置。
    • currentcontent - 返回被选元素的当前 HTML 内容。
  • 实例

    下例演示了改变所有 <p> 元素的内容:
    <!DOCTYPE html>
       <html lang="en">
       <head>
       <meta charset="UTF-8">
       <title>欢迎来到蝴蝶教程</title>
       //此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
       <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
       <script>
          $(document).ready(function () {
             $("button").click(function(){
                $("p").html("Hello <b>world!</b>");
             });
           });
    </script>
    </head>
    <body>
        <p>这是一个段落</p>
        <p>这是另一个段落</p>
        <button>修改所有P元素的内容</button>
    </body>
    </html>           
    
    尝试一下