.html()
Categories:
Attributes | Manipulation > DOM Insertion, Inside
Contents:
-
html()
- .html()
-
html( htmlString )
- .html( htmlString )
- .html( function(index, oldhtml) )
.html() Returns: String
Description: Get the HTML contents of the first element in the set of matched elements.
version added: 1.0.html()
This method is not available on XML documents.
In an HTML document,
In an HTML document,
.html()
can be used to get the
contents of any element. If the selector expression matches more than
one element, only the first match will have its HTML content returned.
Consider this code:$('div.demo-container').html();In order for the following
<div>
's content to be retrieved, it would have to be the first one with class="demo-container"
in the document:<div class="demo-container"> <div class="demo-box">Demonstration Box</div> </div>The result would look like this:
<div class="demo-box">Demonstration Box</div>This method uses the browser's
innerHTML
property. Some
browsers may not return HTML that exactly replicates the HTML source in
an original document. For example, Internet Explorer sometimes leaves
off the quotes around attribute values if they contain only alphanumeric
characters.Example:
Click a paragraph to convert it from html to text.
<!DOCTYPE html>
<html>
<head>
<style>
p { margin:8px; font-size:20px; color:blue;
cursor:pointer; }
b { text-decoration:underline; }
button { cursor:pointer; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p>
<b>Click</b> to change the <span id="tag">html</span>
</p>
<p>
to a <span id="text">text</span> node.
</p>
<p>
This <button name="nada">button</button> does nothing.
</p>
<script>
$("p").click(function () {
var htmlStr = $(this).html();
$(this).text(htmlStr);
});
</script>
</body>
</html>
Demo:
.html( htmlString ) Returns: jQuery
Description: Set the HTML contents of each element in the set of matched elements.
-
version added: 1.0.html( htmlString )
htmlStringA string of HTML to set as the content of each matched element. -
version added: 1.4.html( function(index, oldhtml) )
function(index, oldhtml)A function returning the HTML content to set. Receives the index position of the element in the set and the old HTML value as arguments. jQuery empties the element before calling the function; use the oldhtml argument to reference the previous content. Within the function,this
refers to the current element in the set.
The
When
This method uses the browser's
Note: In Internet Explorer up to and including version 9, setting the text content of an HTML element may corrupt the text nodes of its children that are being removed from the document as a result of the operation. If you are keeping references to these DOM elements and need them to be unchanged, use
.html()
method is not available in XML documents. When
.html()
is used to set an element's content, any
content that was in that element is completely replaced by the new
content. Consider the following HTML:<div class="demo-container"> <div class="demo-box">Demonstration Box</div> </div>The content of
<div class="demo-container">
can be set like this:$('div.demo-container') .html('<p>All new content. <em>You bet!</em></p>');That line of code will replace everything inside
<div class="demo-container">
:<div class="demo-container"> <p>All new content. <em>You bet!</em></p> </div>As of jQuery 1.4, the
.html()
method allows the HTML content to be set by passing in a function.$('div.demo-container').html(function() { var emph = '<em>' + $('p').length + ' paragraphs!</em>'; return '<p>All new content for ' + emph + '</p>'; });Given a document with six paragraphs, this example will set the HTML of
<div class="demo-container">
to <p>All new content for <em>6 paragraphs!</em></p>
.This method uses the browser's
innerHTML
property. Some
browsers may not generate a DOM that exactly replicates the HTML source
provided. For example, Internet Explorer prior to version 8 will convert
all href
properties on links to absolute URLs, and
Internet Explorer prior to version 9 will not correctly handle HTML5
elements without the addition of a separate compatibility layer.Note: In Internet Explorer up to and including version 9, setting the text content of an HTML element may corrupt the text nodes of its children that are being removed from the document as a result of the operation. If you are keeping references to these DOM elements and need them to be unchanged, use
.empty().html(string)
instead of .html(string)
so that the elements are removed from the document before the new string is assigned to the element.Examples:
Example: Add some html to each div.
<!DOCTYPE html>
<html>
<head>
<style>
.red { color:red; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<span>Hello</span>
<div></div>
<div></div>
<div></div>
<script>$("div").html("<span class='red'>Hello
TUGAS TIK XI
SMAN 1 Indralaya utara
sumber materi:http://api.jquery.com/html/
0 komentar: