• Summary概略
    About jlog
    • jlog is a tiny tool for the purpose of the cross browser JavaScript programs development
    • jlog is only an interactive logging facility, not a debugger
    • jlog stands for "JavaScript Log Observation Glasses" (aka plog: peeping log)
    • jlog is a word of one syllable; pronounce j's consonant + log, not J-LOG
    jlog について
    • クロスブラウザJavaScriptプログラム開発目的の小さなツール
    • 唯ログを取るだけで、デバッガではない
    • JavaScript Log Observation Glasses(ログ観察鏡)から命名
    • 『じゅろぐ』と発音(「じぇいろぐ」ではない)
  • Sourceソース
    • _jlog.js
  • Prerequisite前提
    • fss installed
    • fss 設置済み
  • Install設置
    How to install設置方法 / Your choice個別設定
    • Extract the distribution archive in your working directory配布物を作業ディレクトリで展開
    • Insert a few lines into your web pageウェブページへの組み込み (foobar.html)
      
      	<html>
      	<head>
      	    :
      |	<script src="_fss.js" type="text/javascript"></script>
      |	<script src="_jlog.js" type="text/javascript"></script>
      |	<script src="foobar.js" type="text/javascript"></script>
      	    :
      	</head>
      	<body>
      	    :
      	</body></html>
      
      
    • Insert several lines into your JavaScript fileJavaScript ファイルへの組み込み (foobar.js)
      
      	function foobar() {
      |		this._log('foobar(): entered',0);
      		:
      	}
      
      	function foobarInit() {
      		:
      		ofb = new foobar();
      		:
      	}
      
      	window.onload = function () {
      |		// var jlOff = 1;
      |		if (!(typeof _jlog == 'undefined'
      |			|| typeof jlOff != 'undefined' && jlOff)) {
      |			_jlog.prototype._jlOnStartup = true;
      |			jlo = new _jlog(function () { foobarInit(); });
      |			foobar.prototype._log = function (s,level) {
      |				 jlo._jlPuts(s,level);
      |			};
      |		}
      		foobarInit();
      	}
      
      
    • put the following files to the appropriate directory of your web site以下ファイルをサイトの該当ディレクトリに転送
      • _fss.js, _fss.html
      • _jlog.js
      • gpl.txt, dlgpl.php
      • foobar.js
      • foobar.html
  • Sampleサンプル

    n/a

  • Downloadダウンロード

    jlog is one of Use? components.

    jlog は Use? のコンポーネントである