由於現在jscript 編寫方式比以外負責很多很多時候都比較難以調試 為了方便日常程序中的調試擺弄些下面寫Log Class 將需要內容記錄下來
下面就是具體源代碼此Class 只能在 IE浏覽器使用
LogClassprototype = {
initialize : function(){
try{
this_fso = ; //File 操作對象
this_folderspec = ; // 類 fileclass 處理路徑
this_fso = new ActiveXObject(ScriptingFileSystemObject); // 建立 ActiveXObject 對象
this_objDate = new Date();
this_DateString = this_objDateformat(yyMMdd);
this_DateString = c:\\ + this_DateString + log ;
this_folderspec = this_DateString;
}catch(e){
alert(file Class initialize Error : + enumber + + edescription);
}
}
TRACE : function(Content){
try{
thisOpenTextFile(true);
_objDate = new Date();
_dateString = _objDateformat(yyyyMMdd hh:mm:ss);
this_otfWriteLine(_dateString+||+Content);
this_otfclose();
}catch(e){
this_otfClose();
alert(file Class TRACE Error : + enumber + + edescription);
}
}
OpenTextFile : function(IOmodeformat){
try{
this_otf = this_fsoOpenTextFile(this_folderspecIOmodetrueformat);
}catch(e){
this_otfClose();
alert(file Class OpenTextFile Error : + enumber + + edescription);
}
}
};
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26009.html