Javascript中的var_dump函数实现代码
更新时间:2009年09月07日 18:48:32 作者:
发现了一个非常好的JavaScript调试方法,目前看到的是可以打印Object/Array/Function/String四种类型,使用方法和PHP中的var_dump()一样,只要直接dump(变量名)即可。
发现了一个非常好的JavaScript调试方法,目前看到的是可以打印Object/Array/Function/String四种类型,使用方法和PHP中的var_dump()一样,只要直接dump(变量名)即可。
dump(value, [showTypes])
@ param value (Any) value to dump
@ param [showTypes] (Boolean) optional to display each key/value's type
@ return (Void) returns nothing
The Dump method is based on one of the tags available in Coldfusion ( <cfdump>) providing the ability to display simple and complex variables in a user friendly way that is perfect for debugging/inspecting data. There is no way to do this with javascript and often I had wanted a method to do this. This method will do just that allowing for an infinite amount of data nesting complete with color coding for different data types, the ability to show/hide the data's type (String/Number/Boolean/Object/Array/Function), expandable and collapsible tables/keys and cross browser support.
Click on the buttons bellow to see some examples in action, toggle the Show Data Types box to see javascript data typing in action (not possible in Coldfusion).
Browser Support
Internet Explorer 6, Internet Explorer 7, Firefox 1.5, Opera 8, Safari 1.2 (Mac), Firefox (Mac) - all tested, should also work in most other browsers
Dump Examples
官方网址
http://www.netgrow.com.au/files/javascript_dump.cfm
相关文件
http://www.netgrow.com.au/assets/files/dump/dump.zip
以防上面的地址下载不了,脚本之家本地下载地址
https://www.jb51.net/jiaoben/20804.html
复制代码 代码如下:
dump(value, [showTypes])
@ param value (Any) value to dump
@ param [showTypes] (Boolean) optional to display each key/value's type
@ return (Void) returns nothing
The Dump method is based on one of the tags available in Coldfusion ( <cfdump>) providing the ability to display simple and complex variables in a user friendly way that is perfect for debugging/inspecting data. There is no way to do this with javascript and often I had wanted a method to do this. This method will do just that allowing for an infinite amount of data nesting complete with color coding for different data types, the ability to show/hide the data's type (String/Number/Boolean/Object/Array/Function), expandable and collapsible tables/keys and cross browser support.
Click on the buttons bellow to see some examples in action, toggle the Show Data Types box to see javascript data typing in action (not possible in Coldfusion).
Browser Support
Internet Explorer 6, Internet Explorer 7, Firefox 1.5, Opera 8, Safari 1.2 (Mac), Firefox (Mac) - all tested, should also work in most other browsers
Dump Examples
官方网址
http://www.netgrow.com.au/files/javascript_dump.cfm
相关文件
http://www.netgrow.com.au/assets/files/dump/dump.zip
以防上面的地址下载不了,脚本之家本地下载地址
https://www.jb51.net/jiaoben/20804.html
您可能感兴趣的文章:
- JavaScript中var关键字的使用详解
- javascript定义变量时带var与不带var的区别分析
- javascript定义变量时加var与不加var的区别
- JavaScript中变量声明有var和没var的区别示例介绍
- 浅谈JavaScript中定义变量时有无var声明的区别
- javascript定义变量时有var和没有var的区别探讨
- Javascript全局变量var与不var的区别深入解析
- 在Javascript中 声明时用"var"与不用"var"的区别
- 关于JavaScript中var声明变量作用域的推断
- JScript中的''var''定义变量的作用域
- JavaScript中const、var和let区别浅析
相关文章
jquery方法+js一般方法+js面向对象方法实现拖拽效果
多种方法制作的div拖拽,简单实用,包括了jquery方法、js一般方法、js面向对象方法2012-08-08
javascript实现二进制、十进制、十六进制和八进制之间相互转换的方法
JavaScript提供了多种方法进行不同进制之间的转换,包括十进制转二进制、八进制、十六进制,以及二进制、八进制、十六进制之间的相互转换,通过使用Number.prototype.toString()和parseInt()函数,可以实现这些转换,需要的朋友可以参考下2025-02-02


最新评论