Three methods for dynamic loading of JS files _ javascript skills

Source: Internet
Author: User
Tags getscript
You can view the instances directly by loading JS files dynamically.
Example 1 reload the js File

The Code is as follows:


Function loadJs (file ){
Var head = $ ("head"). remove ("script [role = 'reload']");
$ (" "+""). Attr ({role: 'reload', src: file, type: 'text/javascript '}). appendTo (head );
}


Example 2 How to reload a javascript file (set an id for js) and encapsulate it into a method for your convenience:

The Code is as follows:


Function reloadAbleJSFn (id, newJS)
{
Var oldjs = null;
Var t = null;
Var oldjs = document. getElementById (id );
If (oldjs) oldjs. parentNode. removeChild (oldjs );
Var scriptObj = document. createElement ("script ");
ScriptObj. src = newJS;
ScriptObj. type = "text/javascript ";
ScriptObj. id = id;
Document. getElementsByTagName ("head") [0]. appendChild (scriptObj );
}


In Example 3, jquery directly uses getScript.

The Code is as follows:


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.