javascript

位置:IT落伍者 >> javascript >> 浏览文章

JavaScript 写 Log 类的具体实现


发布日期:2023年11月03日
 
JavaScript 写 Log 类的具体实现

由于现在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);

}

}

};

上一篇:给大家讲个不错的ajax组件

下一篇:是什么让我们爱上Javascript