Dom operations vs. innerhtml

Source: Internet
Author: User

1. innerhtml is highly efficient in creation and fast in Dom operation and Deletion
2. the DOM structure cannot be changed if the file loading is incomplete.

Document. onmousedown = function (){
VaR html = "";
For (VAR I = 0; I <10; I ++ ){
HTML + = "<p>" + math. Random () + "<p> ";
} Var temp = Document. createelement ('div ');
Temp. innerhtml = HTML;
VaR frag = Document. createdocumentfragment ();
(Function (){
If (temp. firstchild ){
Frag. appendchild (temp. firstchild );
SetTimeout (arguments. callee, 0 );
} Else {
Document. getelementsbytagname ('div ') [0]. appendchild (frag );
}})();};

Function replacehtml (El, HTML ){

02 var oldel = typeof El = "string "? Document. getelementbyid (EL): El;

03/* @ cc_on // innerhtml alone will be a little faster in IE

04 oldel. innerhtml = HTML;

05 return oldel;

06 @*/

07 var newel = oldel. clonenode (false );

08 newel. innerhtml = HTML;

09 oldel. parentnode. replaceChild (newel, oldel );

10/* because we only remove the old element from the Dom, a new element reference is returned for restoration */

11 return newel;

12 };

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.