【jQuery】 选择器资料: w3school http://www.w3school.com.cn/jquery/jquery_ref_selectors.asp1. 标签选择器 :$("P") -- 所有的 P 标签2. Id 选择器 : $("#txtid") -- id = txtid 的...
分类:
Web程序 时间:
2014-12-16 14:55:59
阅读次数:
281
【jQuery】 效果资料 http://www.w3school.com.cn/jquery/jquery_ref_effects.asp1. 显示隐藏hide();隐藏show(); 显示 toggle(); 隐藏和显示间切换2. 淡入淡出 fadeIn(); 淡入 fadeOut(); 淡出 ...
分类:
Web程序 时间:
2014-12-16 14:55:02
阅读次数:
155
出现log信息:05-0610:10:06.865:ERROR/AndroidRuntime(4061):Causedby:android.database.CursorIndexOutOfBoundsException:Index-1requested,withasizeof1解决问题:出现以上错误是由于没有移动游标或是没有查询到需要的数据而移动了游标强制获取某一行数据而导致的,注意查询..
分类:
其他好文 时间:
2014-12-16 06:34:33
阅读次数:
145
一、看了一下H.264硬解代码,发现有类似这种方式的定义:typedefvoid(*exec_ref_pic_marking_adaptive_mmco_func)(GstVaapiDecoderH264*decoder,GstVaapiPictureH264*picture,GstH264RefPicMarking*ref_pic_marking);staticconstexec_ref_pic_marking_adaptive_mmco_funcmmco_f..
分类:
其他好文 时间:
2014-12-15 22:03:11
阅读次数:
244
第一个Demo: 1 package com.example.sqlitedemo; 2 3 import android.os.Bundle; 4 import android.app.Activity; 5 import android.database.Cursor; 6 import an....
分类:
数据库 时间:
2014-12-15 17:14:38
阅读次数:
228
traceroute [host] 查看到达目标主机路径route -n 查看路由表Destination Gateway Genmask Flags Metric Ref Use Iface0.0.0.0 192.168.137.1 ...
分类:
系统相关 时间:
2014-12-15 13:39:17
阅读次数:
283
在项目上右键->Properties-> configuration Properties->Enable Incremental Linking(设置为No).ref: Linker Tools Error LNK1123
分类:
其他好文 时间:
2014-12-15 10:19:54
阅读次数:
114
1.单行注释--多行注释/*...*/2.标志符号的命名规范 1)当定义变量时,建议用v_作为前缀 v_sal 2)当定义常量时,建议用c_作为前缀 c_rate 3)当定义游标时,建议用_cursor作为后缀 emp_cursor 4)当定义例外时,建议用e_作为前缀 e_erro...
分类:
数据库 时间:
2014-12-14 21:13:41
阅读次数:
309
ref:http://stackoverflow.com/questions/271743/whats-the-difference-between-b-and-strong-i-and-emThey have thesame effect on normal web browser renderi...
分类:
Web程序 时间:
2014-12-14 15:47:08
阅读次数:
297
go
declare @auid uniqueidentifier,@name varchar(Max) ---定义变量
declare auth_cur cursor for --定义游标
select ID, [FirstMenu] from [dbo].[MenuList]
open auth_cur--打开游标
fetch next from auth_cur into @a...
分类:
数据库 时间:
2014-12-14 13:18:32
阅读次数:
205