Front-end performance optimization: Use array. Prototype. Join to replace string connections

Source: Internet
Author: User

Date: 2013-7-3 Source: gbin1.com

There is a very simple client optimization method, that is, using array. Prototype. Join to replace the original basic character connection method. In the first article of this series, I used the basic character connection in the Code:

Htmlstr + = '<li>' + item. Text + '</LI> ';

But in the following code, I used optimization:

VaR items = []; ajaxresult. items. foreach (function (item) {// construct string items. push ('<li>', item. text, '</LI>') ;}); // you can use innerhtml to set the list content document. queryselector ('ul '). innerhtml = items. join ('');

It may take you a little time to see what the array is for, but all users have benefited a lot from this optimization.

Next, we will talk about using CSS animation at the front end as much as possible.

Via geeks

Source: front-end performance optimization: Use array. Prototype. Join to replace string connections
Related Article

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.