码迷,mamicode.com
首页 >  
搜索关键字:activemq console    ( 15604个结果
jquery下简化 console.log 的写法
window.ll = function f() { ll.history = ll.history || []; ll.history.push(arguments); if (this.console) { var a = arguments, c; ...
分类:Web程序   时间:2014-06-15 23:43:13    阅读次数:410
转 Web移动应用调试工具——Weinre
Weinre代表We b In spector Re mote,是一种远程调试工具。举个例子,在电脑上可以即时 的更改手机上对应网页的页面元素、样式表,或是查看Javascript变量,同时还可以看到手机上页面的错误和警告信息. 下图所示中的例子,通过在console中运行“document.bod...
分类:移动开发   时间:2014-06-15 09:26:20    阅读次数:184
大龙谈字符串截取
string str = "大龙喜欢zzm"; string s1 = str.Substring(0, 2); string s2 = str.Substring(2, 2); string s3 = str.Substring(4); Console.WriteLine(str[0]); ...
分类:其他好文   时间:2014-06-15 08:14:34    阅读次数:207
JavaScript之continue、break和return
continuecontinue 只能用于while循环、do/while循环、for循环以及for/in循环中,其他地方都会引起错误。1 for(var i=0;i<5;i++){2 if(i == 3) continue;3 console.log(i); //0,1,2,...
分类:编程语言   时间:2014-06-15 06:43:13    阅读次数:239
设置Proxy Server和SQL Server实现互联网上的数据库安全
◆首先,我们需要了解一下SQL Server在WinSock上定义协议的步骤: 1. 在”启动”菜单上,指向”程序/Microsoft Proxy Server”,然后点击”Microsoft Management Console”。 2. 展开”Internet Information Ser.....
分类:数据库   时间:2014-06-13 16:13:12    阅读次数:206
js判别过滤出ie8、ie7
最近看到一种if语句if(!+"\v1")不知其用意,于是调式了一番,原来ie8与ie8以下浏览器中(!+“\v1”)返回true,其他主流浏览器跟ie9+则返回false。为什么会这样?先把语句拆分出来分析 1:“\v1”; \v在正则表达式中表示”竖向制表符“console.log("\v1")...
分类:Web程序   时间:2014-06-12 18:44:15    阅读次数:209
记一个使用Client Object Model上传文件的小例子
1. 新建一个C#的Console project. 2. 给project 添加reference: Microsoft.SharePoint.Client Microsoft.SharePoint.Runtime 3. 修改project的属性: Platform target – x64 Ta...
分类:其他好文   时间:2014-06-12 11:43:29    阅读次数:326
【转】使用cocos2d-console工具转换脚本为字节码
从Cocos2D-X v2.1.4版本开始,增加了Cocos2D-console命令行工具,该工具的其中一个功能是:把.js文件转换为.jsc文件,该文件是字节码格式,可以提高代码的安全性。使用这个工具的方式很简单。以引擎自带的TestJavaScript项目为例:首先我们cd到Cocos2D-co...
分类:其他好文   时间:2014-06-10 13:07:06    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!