上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 35 下一页
摘要: $("#talbeid tr:eq(1)").addClass("select"); $("#talbeid tr:eq(1)").siblings().removeClass("select");siblings(".select"):找到同辈元素的含有样式为".select"的元素 阅读全文
posted @ 2013-03-25 00:46 kuailewangzi1212 阅读(264) 评论(0) 推荐(0) 编辑
摘要: var row=[{},{},{}];$.each(row, function(k, v) { if (k == 3) { return false; } console.info(k); }); console.info('10'); 阅读全文
posted @ 2013-03-24 18:26 kuailewangzi1212 阅读(179) 评论(0) 推荐(0) 编辑
摘要: if ("undefined" != typeof g_curruser) 阅读全文
posted @ 2013-03-22 22:15 kuailewangzi1212 阅读(120) 评论(0) 推荐(0) 编辑
摘要: SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOcreate procedure [dbo].[sp_getbi](@comp_id varchar(8),@type varchar(50),@flag char(1))as/*功能描述:取下一个编号参数说明: @comp_id:公司编号 @type:编号类型 @flag:标志(R:读取下一个编号;W:读出下一个编号,同时提交到数据库)测试:execute sp_getbi('','','')select * from sys_number*/begin 阅读全文
posted @ 2013-03-21 18:18 kuailewangzi1212 阅读(408) 评论(0) 推荐(0) 编辑
摘要: create table sys_employee( iid numeric(19,0) identity(1,1) not null, --系统属性 id varchar(8) not null, name varchar(10), password varchar(50), --职务部门 department_id varchar(8),--部门 --联系方式 telphone varchar(30),--联系电话 mobile varchar(30),--手机号码 email varchar(50),--电子邮件 postcart varchar(10),--邮编 workunit .. 阅读全文
posted @ 2013-03-04 10:41 kuailewangzi1212 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 父类package SysCommon.util;import java.io.Serializable;import SysCommon.util.Tools;public abstract class IBean implements Serializable { public String toJson() throws Exception { return Tools.gson.toJson(this); }}子类package org.jgw.onepai.bean;import java.util.List;import android.graphics.Bitmap;imp... 阅读全文
posted @ 2013-02-27 21:20 kuailewangzi1212 阅读(3348) 评论(0) 推荐(0) 编辑
摘要: --Functioncreate FUNCTION dbo.f_splitBinary(@s varbinary(max)) returns @t table(id int identity(1,1),Value binary(1)) as BEGIN declare @i int, @im int; select @i=1,@im=datalength(@s); while @i<=@im begin insert into @t select substring(@s,@i,1); set @i=@i+... 阅读全文
posted @ 2013-01-25 12:03 kuailewangzi1212 阅读(185) 评论(0) 推荐(0) 编辑
摘要: set xact_abort on分布式事务+嵌套事务是用 阅读全文
posted @ 2012-12-21 13:59 kuailewangzi1212 阅读(97) 评论(0) 推荐(0) 编辑
摘要: string ls_log_path,ls_txt string ls_rtn ls_log_path=idt_card.is_imgfile long ll_file ll_file=fileopen(ls_log_path,linemode!,Read!,LockWrite!,Append! ) ll_rtn=fileread(ll_file,ls_txt) do while ll_rtn>=0 ls_rtn+=ls_txt ll_rtn=fileread(ll_file,ls_txt) loop fileclose(ll_file) 阅读全文
posted @ 2012-12-18 18:00 kuailewangzi1212 阅读(234) 评论(0) 推荐(0) 编辑
摘要: ls_tmp="20121212" ls_sr=mid(ls_tmp,7,8) ls_sr=mid(ls_sr,1,4)+'-'+mid(ls_sr,5,2)+'-'+mid(ls_sr,7,2) this.object.birthday[row] = datetime(date(ls_sr))ll_days=daysafter(date(2010-01-01),today()) * 24 * 60 * 60ll_tims=secondsafter(00:00:00,time(string(today(),'HH:mm:ss' 阅读全文
posted @ 2012-12-12 09:32 kuailewangzi1212 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 35 下一页