为调试JavaScript添加输出窗口的代码


Posted in Javascript onFebruary 07, 2010

虽然不是很复杂的实现,但每次都要这样就会很麻烦,所以我写了一小段脚本,用来自动生成这个输出窗口。
代码

window.Babu = {}; 
Babu.Debugging = {}; 
Babu.Debugging.writeLine = function(format, arg1, arg2) { 
var console = Babu.Debugging._getConsole(); 
if (console.get_visible()) { 
var msg = format; 
if (typeof msg !== "undefined" && msg !== null) { 
var index; 
if (typeof msg === "string") { 
var array = format.match(/\{(\d+)\}/g); 
if (array) { 
for (var i = 0; i < array.length; i++) { 
index = array[i]; 
index = parseInt(index.substr(1, index.length - 2)) + 1; 
msg = msg.replace(array[i], arguments[index]); 
} 
} 
} 
} 
var span = document.createElement("SPAN"); 
span.appendChild(document.createTextNode(msg)); 
console._output.appendChild(span); 
console._output.appendChild(document.createElement("BR")); 
span.scrollIntoView(); 
return span; 
} 
} 
Babu.Debugging._getConsole = function() { 
var console = Babu.Debugging._console; 
if (!console) { 
var div = document.createElement("DIV"); 
div.style.position = "fixed"; 
div.style.right = "3px"; 
div.style.bottom = "3px"; 
div.style.width = "350px"; 
div.style.height = "180px"; 
div.style.backgroundColor = "white"; 
div.style.color = "black"; 
div.style.border = "solid 2px #afafaf"; 
div.style.fontSize = "12px"; 
document.body.appendChild(div); 
Babu.Debugging._console = console = div; 
div = document.createElement("DIV"); 
div.style.backgroundColor = "#e0e0e0"; 
div.style.position = "absolute"; 
div.style.left = "0px"; 
div.style.right = "0px"; 
div.style.top = "0px"; 
div.style.height = "16px"; 
div.style.padding = "2px 2px"; 
div.style.margin = "0px"; 
console.appendChild(div); 
console._toolbar = div; 
div = document.createElement("DIV"); 
div.style.overflow = "auto"; 
div.style.whiteSpace = "nowrap"; 
div.style.position = "absolute"; 
div.style.left = "0px"; 
div.style.right = "0px"; 
div.style.top = "20px"; 
div.style.bottom = "0px"; 
div.style.height = "auto"; 
console.appendChild(div); 
console._output = div; 
var btn; 
btn = document.createElement("SPAN"); 
btn.innerHTML = "收缩"; 
btn.style.margin = "0px 3px"; 
btn.style.cursor = "pointer"; 
console._toolbar.appendChild(btn); 
btn.onclick = function() { if (console.get_collapsed()) console.expand(); else console.collapse(); } 
btn = document.createElement("SPAN"); 
btn.innerHTML = "清除"; 
btn.style.margin = "0px 3px"; 
btn.style.cursor = "pointer"; 
console._toolbar.appendChild(btn); 
btn.onclick = Babu.Debugging.clearConsole; 
btn = document.createElement("SPAN"); 
btn.innerHTML = "关闭"; 
btn.style.cursor = "pointer"; 
btn.style.margin = "0px 3px"; 
console._toolbar.appendChild(btn); 
btn.onclick = function() { Babu.Debugging.hideConsole(); } 
console.get_visible = function() { return this.style.display !== "none" }; 
console.get_collapsed = function() { return !(!this._collapseState) }; 
console.collapse = function() { 
if (!this.get_collapsed()) { 
this._output.style.display = "none"; 
this._toolbar.childNodes[1].style.display = "none"; 
this._toolbar.childNodes[2].style.display = "none"; 
this._toolbar.childNodes[0].innerHTML = "展开"; 
this._collapseState = { width: this.style.width, height: this.style.height } 
this.style.width = "30px"; 
this.style.height = "16px"; 
} 
} 
console.expand = function() { 
if (this.get_collapsed()) { 
this._output.style.display = ""; 
this._toolbar.childNodes[1].style.display = ""; 
this._toolbar.childNodes[2].style.display = ""; 
this._toolbar.childNodes[0].innerHTML = "收缩"; 
this.style.width = this._collapseState.width; 
this.style.height = this._collapseState.height; 
this._collapseState = null; 
} 
} 
} 
return console; 
} 
Babu.Debugging.showConsole = function() { 
Babu.Debugging._getConsole().style.display = ""; 
} 
Babu.Debugging.hideConsole = function() { 
var console = Babu.Debugging._console; 
if (console) { 
console.style.display = "none"; 
} 
} 
Babu.Debugging.clearConsole = function() { 
var console = Babu.Debugging._console; 
if (console) console._output.innerHTML = ""; 
}

调用方法很简单:
Babu.Debugging.writeLine("调试信息"); 
Babu.Debugging.writeLine("带参数的调试信息:参数1={0},参数2={1}", arg1, arg2);

调用之后,会自动在窗口的右下角出现一个固定位置的窗口,并显示相应的内容。效果图请看下面:
为调试JavaScript添加输出窗口的代码
Javascript 相关文章推荐
JQuery扩展插件Validate—4设置错误提示的样式
Sep 05 Javascript
jquery实现图片滚动效果的简单实例
Nov 23 Javascript
window.location.href的用法(动态输出跳转)
Aug 09 Javascript
JavaScript中的类与实例实现方法
Jan 23 Javascript
jscript读写二进制文件的方法
Apr 22 Javascript
jquery及js实现动态加载js文件的方法
Jan 21 Javascript
前端js实现文件的断点续传 后端PHP文件接收
Oct 14 Javascript
Java中int与integer的区别(基本数据类型与引用数据类型)
Feb 19 Javascript
webpack多页面开发实践
Dec 18 Javascript
Layui 设置select下拉框自动选中某项的方法
Aug 14 Javascript
react-router 路由切换动画的实现示例
Dec 03 Javascript
JavaScript数组 几个常用方法总结
Nov 11 Javascript
JavaScript 读取元素的CSS信息的代码
Feb 07 #Javascript
js png图片(有含有透明)在IE6中为什么不透明了
Feb 07 #Javascript
JavaScript Event学习第八章 事件的顺序
Feb 07 #Javascript
JavaScript Event学习第七章 事件属性
Feb 07 #Javascript
JavaScript Event学习第六章 事件的访问
Feb 07 #Javascript
JavaScript Event学习第五章 高级事件注册模型
Feb 07 #Javascript
JavaScript Event学习第四章 传统的事件注册模型
Feb 07 #Javascript
You might like
使用php来实现网络服务
2009/09/15 PHP
php开发微信支付获取用户地址
2015/10/04 PHP
php的闭包(Closure)匿名函数初探
2016/02/14 PHP
php的socket编程详解
2016/11/20 PHP
php判断是否连接上网络的方法实例详解
2016/12/14 PHP
详解PHP防止直接访问.php 文件的实现方法
2017/07/28 PHP
深入理解javascript中return的作用
2013/12/30 Javascript
jQuery自定义事件的简单实现代码
2014/01/27 Javascript
原生javascript实现隔行换色
2015/01/04 Javascript
全面详细的jQuery常见开发技巧手册
2016/02/21 Javascript
js实现颜色阶梯渐变效果(Gradient算法)
2017/03/21 Javascript
Angular实现响应式表单
2017/08/04 Javascript
JS中Swiper的使用和轮播图效果
2017/08/11 Javascript
JavaScript伪数组用法实例分析
2017/12/22 Javascript
React Native基础入门之初步使用Flexbox布局
2018/07/02 Javascript
layui的layedit富文本赋值方法
2019/09/18 Javascript
vue-cli+iview项目打包上线之后图标不显示问题及解决方法
2019/10/16 Javascript
python进程管理工具supervisor使用实例
2014/09/17 Python
Python动态加载模块的3种方法
2014/11/22 Python
Python中解析JSON并同时进行自定义编码处理实例
2015/02/08 Python
简述:我为什么选择Python而不是Matlab和R语言
2017/11/14 Python
python3操作微信itchat实现发送图片
2018/02/24 Python
Python3使用正则表达式爬取内涵段子示例
2018/04/22 Python
用python脚本24小时刷浏览器的访问量方法
2018/12/07 Python
详解Python的三种拷贝方式
2020/02/11 Python
用Python绘制漫步图实例讲解
2020/02/26 Python
关于Django Models CharField 参数说明
2020/03/31 Python
python如何进行矩阵运算
2020/06/05 Python
python中time tzset()函数实例用法
2021/02/18 Python
CSS3制作缩略图的详细过程
2016/07/08 HTML / CSS
Dockers美国官方网站:卡其裤、男士服装、鞋及配件
2016/11/22 全球购物
面包店的创业计划书范文
2014/01/16 职场文书
我的中国梦演讲稿高中篇
2014/08/19 职场文书
优秀党员事迹材料
2014/12/18 职场文书
大学生干部培训心得体会
2016/01/06 职场文书
图神经网络GNN算法
2022/05/11 Python