Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
The createContextualFragment() method enables you to parse a string of HTML into a DocumentFragment using the starting node of a Document Object Model (DOM) Range as the parsing context. Unlike inserting markup into innerHTML, the method can be used to create pre-parsed content to be added or inserted into a document when needed later.
The syntax of the createContextualFragment method is as follows:
oFragment = oRange.createContextualFragment(string);
The parameters are described here:
| Parameter | Description |
|---|---|
oFragment |
A DocumentFragment object. |
oRange |
A DOM Range object. |
string |
A string containing the HTML to parse. |