给标签增加href属性,就意味着以下事情::link选择器可以选择到它这个a标签可以获得焦点(可以通过tab按键访问到)在浏览器的默认样式表中,有href属性的标签才有cursor:pointer的效果(尤其是在低版本的IE上)。绑定了onclick事件的标签,尤其是它的作用是ajax请求时,基本上...
分类:
其他好文 时间:
2014-08-04 13:23:47
阅读次数:
365
“Control panel” => “Ease of Access” => “Ease of Access Center” => “Make the computer easier to see” => “Set the thickness of the blinking cursor”. 8 p...
非托管资 源:ApplicationContext,Brush,Component,ComponentDesigner,Container,Context,Cursor,FileStream,Font,Icon,Image,Matrix,Object,OdbcDataReader,OleDBData...
分类:
编程语言 时间:
2014-08-03 23:04:56
阅读次数:
416
我根据下面的ref链接整理的基本是的按用户额度管理步骤 (按组的额度管理被简化掉) 我在Ubuntu服务器12.04下整理,其他版本的Ubuntu和Linux应该都没有问题的(有任何错误都指正给我,包括typo)准备:sudo apt-get install quota按用户名配额步骤如下:1. 设...
分类:
系统相关 时间:
2014-08-03 17:45:55
阅读次数:
323
1 查看查询计划 db.user.find({"username":"xxx"}) .explain() db.doc.find({"es_y":"2014"}).explain() { ?"cursor" : "BasicCursor", ?"isMultiKey" : false, ?"n" : 0, ?"nscannedObjects" : 1, ?"nscann...
分类:
数据库 时间:
2014-08-03 12:56:45
阅读次数:
268
当使用 pl/sql 查询 Oracle 数据库时,有时我们想输出多条记录的数据。:select * from scott.emp;这时,我们一定会想利用循环来输出。但是,在pl/sql 中是没有数组类型的,那么用什么来暂时保存查询出来的结果集那?这时。就要使用 cursor(游标)。1.定义游标:...
分类:
数据库 时间:
2014-08-01 15:36:01
阅读次数:
260
java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data fr...
Css cursor鼠标指针鼠标光标样式教程篇 (体感音乐)我们在DIV CSS布局时候,我们会遇到对对象内鼠标指针光标进行控制,比如鼠标经过指针变为手指形状等样式,接下来我们介绍鼠标指针样式cursor控制。系统默认鼠标指针样式外,可以通过CSS设置图片为鼠标指针,常见有些网站鼠标指针是各种各样小...
分类:
Web程序 时间:
2014-08-01 10:38:41
阅读次数:
282
Uri uri = data.getData();String[] proj = { MediaStore.Images.Media.DATA };Cursor actualimagecursor = managedQuery(uri,proj,null,null,null);int actual_...
分类:
移动开发 时间:
2014-08-01 04:45:11
阅读次数:
291
SimpleCursorAdapter直接使用的方法:
SimpleCursorAdapter允许你绑定一个游标的列到ListView上,并使用自定义的layout显示每个项目。
SimpleCursorAdapter的创建,需要传入当前的上下文、一个layout资源,一个游标和两个数组:一个包含使用的列的名字,另一个(相同大小)数组包含View中的资源ID,用于显示相应列的数据值。
/...
分类:
移动开发 时间:
2014-07-31 17:18:16
阅读次数:
195