1、jQuery对象缓存如果同一元素被查找多次时,就应该将该jQuery对象缓存起来,不然每次查找都要遍历整个文档。使用下边的代码做个简单的测试 用Chrome浏览器按F12打开控制台查看结果:(注:console.time在Chrome和Firefox浏览器好用,IE不行)性能还...
分类:
Web程序 时间:
2014-07-23 15:14:26
阅读次数:
216
IE8 下console.log() 报错 bug
分类:
其他好文 时间:
2014-07-23 12:40:26
阅读次数:
138
Eclipse的控制台console有时候经常的跳出来,非常的烦人!让它不经常的调出来,可以按下面的操作去掉它:windows -> preferences -> run/debug -> console去掉"Show when program writest to standard out"和"S...
分类:
系统相关 时间:
2014-07-23 11:48:36
阅读次数:
257
1、在uboot需要做的是:
①usb reset
②fatload usb 0:1 0x80c00000 root_uImage
③bootm 0x80c00000
启动内核参数
CONFIG_CMDLINE="console=ttyS1,57600n8 mem=32m ip=off noinitrd root=8:2 rw rootfstype=ext2 rootdelay=...
分类:
系统相关 时间:
2014-07-22 23:54:16
阅读次数:
792
在开发的过程中由于调试的原因,在代码中加入console.info("xxxx"),而未进行删除在IE8下测试该代码所在的页面报错,如下:...
分类:
其他好文 时间:
2014-07-22 23:48:07
阅读次数:
608
1.首先打开终端,cd到cocos2d-x-3.2目录下,运行命令./setup.py ,根据提示设置相应的ndk路径NDK_ROOT,sdk路径ANDROID_SDK_ROOT,ant路径ANT_ROOT,cocos2d路径COCOS_CONSOLE_ROOT
= “cocos2d-x-3.2/tools/cocos2d-console/bin”,也可以用open -t ~/.bash_pr...
分类:
其他好文 时间:
2014-07-22 22:33:54
阅读次数:
185
yum-yinstallqemu-kvmqemu-imglibvirtvirt-installbridge-utilslsmod|grepkvmsystemctlstartlibvirtdsystemctlenablelibvirtd
分类:
其他好文 时间:
2014-07-22 18:10:02
阅读次数:
165
==========================================第一种(普通排序)string[]s={"zhangsan","lisi","wangwu","liumazi"};
Array.Sort(s);//排序
foreach(stringitemins)
{
Console.WriteLine(item);
}==========================================第二种(自定义类排序)-----------..
分类:
其他好文 时间:
2014-07-22 14:57:14
阅读次数:
300
1.工厂模式 工厂模式是一种常用的创建对象的模式,可以使用以下函数封装创建对象的细节:function CreatePerson(name,age){var p=new Object(); p.name=name; p.age=age; p.speak=function(){ console...
分类:
编程语言 时间:
2014-07-22 00:11:38
阅读次数:
275
varmysql=require(‘mysql‘);varclient=mysql.createConnection({host:‘112.124.54.74‘,port:3306,user:‘yin‘,password:‘691331‘,database:‘hu‘});client.connect(function(error,results){if(error){console.log(‘ConnectionError:‘+error.message);return;}console.log(‘Conne..
分类:
数据库 时间:
2014-07-21 19:48:22
阅读次数:
263