HTML

?? [?e?t? ti: em ?el] US [?et?ti?m??l]

abbr.Hypertext Markup Language ?????? ??? ??

jqueryhtml() ??? ???

??: html() ???? ??? ??? ???(?? HTML)? ????? ?????. ? ???? ????? ???? ??? ??? ??? ?? ???? ?????.

?? ??? ??: ? ???? ???? ?? ???? ???? ? ?? ??? ???? ?????.

??: ??$(selector).html()

?? ?? ??: ? ??? ???? ?? ???? ???? ?? ??? ??? ?????.

??: ??$(selector).html(content)

????:

ParametersDescription
content ?? ?????. ??? ??? ? ???? ?????. ? ?????? HTML ??? ??? ? ????.

??? ???? ?? ?? ??: ??? ???? ???? ?? ??? ??? ?????.

??: ??$(selector).html(function(index,oldcontent))

????:

???? Description
function(index,oldcontent) ??? ????? ??? ??? ? ??? ???? ?????.
index????. ???? ??? ??? ????.
oldcontent ????. ???? ?? ??? ????.

jqueryhtml() ??? ?

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".btn1").click(function(){
    $("p").html("Hello <b>world!</b>");
  });
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">改變 p 元素的內(nèi)容</button>
</body>
</html>
???? ?? ?

??? ????? ??? "???? ??" ??? ?????