Windowsに新しいメンバーを追加

1202 ワード

s
Webviewでは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