Use jquery to dynamically load the js file

  • 2020-05-09 18:09:00
  • OfStack

The method is very simple, so without further ado, I'll just hand you the code:


$.extend({
     includePath: '',
     include: function(file) {
        var files = typeof file == "string" ? [file]:file;
        for (var i = 0; i < files.length; i++) {
            var name = files[i].replace(/^\s|\s$/g, "");
            var att = name.split('.');
            var ext = att[att.length - 1].toLowerCase();
            var isCSS = ext == "css";
            var tag = isCSS ? "link" : "script";
            var attr = isCSS ? " type='text/css' rel='stylesheet' " : " language='javascript' type='text/javascript' ";
            var link = (isCSS ? "href" : "src") + "='" + $.includePath + name + "'";
            if ($(tag + "[" + link + "]").length == 0) $("body").append("<" + tag + attr + link + "></" + tag + ">");
        }
   }
}); // Method of use
$.includePath = '../js/Exam';
$.include(['/AddQuestion.js']);

If you have any questions in the comments below, we make progress together.


Related articles: