Home  >  Article  >  Web Front-end  >  js function examples about namespace_javascript skills

js function examples about namespace_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:15:301454browse

The examples in this article describe js functions about namespaces. Share it with everyone for your reference. The details are as follows:

var MYAPP = MYAPP || {};
MYAPP.namespace = function(ns_string){
    var parts = ns_string.split('.');
    var parent = MYAPP;
    var i=0;
    if(parts[0]==="MYAPP"){
      parts = parts.slice(1);
    }
    for(i=0 ; i<parts.length; i++){
      if(typeof parent[parts[i]]=='undefined'){
        parent[parts[i]]={};
      }
      parent = parent[parts[i]];
    }
    return parent;
}
var module2= MYAPP.namespace('MYAPP.modules.module2');

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn