윈도우에 새 구성원 추가

1201 단어
s
웹뷰에서 pc에서 테스트를 해야 하기 때문에 이런 요구가 있을 수 있습니다.
var mytempSave = {
    put : function(key,value){this[key] = value},
    get : function(key){
    	var a = this[key];
    	if(!a) a = "";
    	return this[key];
    	},
    contains : function(key){return this.Get(key) == null?false:true},
    remove : function(key){delete this[key]}
}

var andych008 = new Object();
andych008.isBackground = function (){
	console.log("andych008.isBackground()");
	return false;	
};
andych008.setMsgNum = function (num){
	console.log("andych008.setMsgNum:"+num);	
};
andych008.setNotice = function (noticeStr){
	console.log("andych008.setNotice:");
	console.log(noticeStr);

};
andych008.dangdang = function (){
	console.log("andych008.dangdang()");
};
andych008.tempGet = function (key){
	console.log("andych008.tempGet:"+key);
	return mytempSave.get(key);	
};
andych008.tempPut = function (key, value){
	console.log("andych008.tempPut:"+"_key="+key+"\t_value="+value);
	return mytempSave.put(key, value);	
};	

window.andych008 = andych008;

그리고 바로 window를 통해서.andych008.dangdang () 등 접근 방법
s
s

좋은 웹페이지 즐겨찾기