1. 程式人生 > >js 寫程式日誌程式碼

js 寫程式日誌程式碼

<script src="../script/jquery-1.8.2.min.js"></script>
<script type="text/javascript">

function WriteLog(sWrite)
{
	var fso,tf;
	fso = new ActiveXObject("Scripting.FileSystemObject");//獲取物件
	tf = fso.OpenTextFile("c:\\log.txt",8,true);//沒有便建立檔案,8代表追加檔案。
	var myDate = new Date();
	tf.WriteLine(myDate.getHours()+":"+myDate.getMinutes()+":"+myDate.getSeconds());					//寫一行,並使檔案結尾跳到新的一行
	tf.WriteLine(sWrite);						//檔案結尾在當前行的下一行開頭處。		
	tf.Write("");								//檔案結尾就在當前行的最後一個字元後面
	tf.Close();									//關閉檔案
}

$(function(){
	WriteLog("1");
	WriteLog("2");
});
</script>