Example of asynchronous loading of javascript loadScript

Source: Internet
Author: User

I. Syntax:
LoadScript (url [, callback])
Or
LoadScript (settings)
2. Parameters supported by settings:
Url: script path
Async: asynchronous or not. The default value is false (HTML5)
Charset: file encoding
Cache: whether to cache. The default value is true.
Success: the function that is executed after the load is successful. callback is executed first.
Iii. Call example:
Copy codeThe Code is as follows:
// LoadScript (url [, callback])
LoadScript ("http://code.jquery.com/jquery.js ");
LoadScript ("http://code.jquery.com/jquery.js#,function (){
Console. log (1)
});
// LoadScript (settings)
LoadScript ({"url": "parts });
LoadScript ({"url": "loads (){
Console. log (2)
}});
// Or you can set the sauce purple:
// LoadScript (settings [, callback])
LoadScript ({"url": "http://code.jquery.com/jquery.js?,?async=:false,?charset=:=8}},function (){
Console. log ($)
});

4. Source Code:
Copy codeThe Code is as follows:
Function loadScript (url, callback ){
Var head = document. head | document. getElementsByTagName ("head") [0] | document.doc umentElement,
Script,
Options,

If (typeof url = "object "){
Options = url;
Url = undefined;
}
S = options | {};
Url = url | s. url;
Callback = callback | s. success;
Script = document. createElement ("script ");
Script. async = s. async | false;
Script. type = "text/javascript ";
If (s. charset ){
Script. charset = s. charset;
}
If (s. cache = false ){
Url = url + (/\? /. Test (url )? "&": "?" ) + "_ =" + (New Date (). getTime ();
}
Script. src = url;
Head. insertBefore (script, head. firstChild );
If (callback ){
Document. addEventListener? Script. addEventListener ("load", callback, false): script. onreadystatechange = function (){
If (/loaded | complete/. test (script. readyState )){
Script. onreadystatechange = null
Callback ()
}
}
}
}

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.