摘要:JQuery - .html() (how to get a html content)
Record how to use it. URL
n 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:
1
|
$( "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:
1
2
3
|
<div class="demo-container"> <div class="demo-box">Demonstration Box</div> </div> |
The result would look like this:
1
|
<div class="demo-box">Demonstration Box</div> |