⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jsunittracer.js

📁 一个用javascript开发的可以拖拽表单的例子,很精典.
💻 JS
字号:
/* @author Edward Hieatt, edward@jsunit.net */function jsUnitTracer() {  this._traceWindow        = null;  this.TRACE_LEVEL_WARNING = 1;  this.TRACE_LEVEL_INFO    = 2;  this.TRACE_LEVEL_DEBUG   = 3;  this.popupWindowsBlocked = false;}jsUnitTracer.prototype.initialize = function () {  if (this._traceWindow != null && top.testManager.closeTraceWindowOnNewRun.checked)    this._traceWindow.close();  this._traceWindow = null;}jsUnitTracer.prototype.finalize = function () {  if (this._traceWindow!=null) {    this._traceWindow.document.write('<\/body>\n<\/html>');    this._traceWindow.document.close();  }}jsUnitTracer.prototype.warn = function () {  this._trace(arguments[0], arguments[1], this.TRACE_LEVEL_WARNING);}jsUnitTracer.prototype.inform = function () {  this._trace(arguments[0], arguments[1], this.TRACE_LEVEL_INFO);}jsUnitTracer.prototype.debug = function () {  this._trace(arguments[0], arguments[1], this.TRACE_LEVEL_DEBUG);}jsUnitTracer.prototype._trace = function (message, value, traceLevel) {  if (this._getChosenTraceLevel() >= traceLevel) {    var traceString = message;    if (value)      traceString += ': ' + value;    this._writeToTraceWindow(traceString, traceLevel);  }}jsUnitTracer.prototype._getChosenTraceLevel = function () {  return eval(top.testManager.traceLevel.value);}jsUnitTracer.prototype._writeToTraceWindow  = function (traceString, traceLevel) {  var htmlToAppend = '<p class="jsUnitDefault">' + traceString + '<\/p>\n';  this._getTraceWindow().document.write(htmlToAppend);}jsUnitTracer.prototype._getTraceWindow = function () {  if (this._traceWindow == null && !this.popupWindowsBlocked) {    this._traceWindow = window.open('','','width=600, height=350,status=no,resizable=yes,scrollbars=yes');    if (!this._traceWindow) {      this.popupWindowsBlocked = true;    }    else {      var resDoc = this._traceWindow.document;      resDoc.write('<html>\n<head>\n<link rel="stylesheet" href="css/jsUnitStyle.css">\n<title>Tracing - JsUnit<\/title>\n<head>\n<body>');      resDoc.write('<h2>Tracing - JsUnit<\/h2>\n');    }  }  return this._traceWindow;}if (xbDEBUG.on){  xbDebugTraceObject('window', 'jsUnitTracer');}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -