JS 샌 드 박스 모델 사례 분석
//SandBox(['module1,module2'],function(box){});
/*
*
*
* @function
* @constructor
* @param [] array
* @param callback function
* : ( ), ,
js
*
* */
function SandBox() {
//
var args = Array.prototype.slice.call(arguments),
callback = args.pop(),
// ,
modules = (args && typeof args[0] == "string") ? args : args[0];
//
if (!(this instanceof SandBox)) {
return new SandBox(modules,callback);
}
// “*” “ ”
if (!modules || modules[0] === "*") {
for(value in SandBox.modules){
modules.push(value);
}
}
// ( box )
for (var i = 0; i < modules.length; i++) {
SandBox.modules[modules[i]](this);
}
// ,this box
callback(this);
}
SandBox.prototype={
name:"My Application",
version:"1.0",
getName:function() {
return this.name;
}
};
/*
*
*
* */
SandBox.modules={};
SandBox.modules.event=function(box){
//
var xx="xxx";
//
box.attachEvent=function(){
console.log("modules:event------API:attachEvent")
};
box.dettachEvent=function(){
};
}
SandBox.modules.ajax=function(box) {
var xx = "xxx";
box.makeRequest = function () {
};
box.getResponse = function () {
};
}
SandBox(['event','ajax'],function(box){
box.attachEvent();
})
실행 효과 캡 처:더 많은 자 바스 크 립 트 관련 내용 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.,,,,,,,,,,,,,,,,,,
본 고 에서 말 한 것 이 여러분 의 자 바스 크 립 트 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JS 판단 수조 네 가지 실현 방법 상세그러면 본고는 주로 몇 가지 판단 방식과 방식 판단의 원리를 바탕으로 문제가 있는지 토론하고자 한다. 예를 들어 html에 여러 개의 iframe 대상이 있으면 instanceof의 검증 결과가 기대에 부합되지 않을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.