摘要:昨晚无意中发现一个有趣的jQuery插件.tmpl(),其文档在这里。官方解释对该插件的说明:将匹配的第一个元素作为模板,render指定的数据,签名如下: .tmpl([data,][options]) .tmpl([data,][options]) .tmpl([data,][options])
阅读全文
posted @ 2013-11-15 16:20
11 2013 档案
摘要:昨晚无意中发现一个有趣的jQuery插件.tmpl(),其文档在这里。官方解释对该插件的说明:将匹配的第一个元素作为模板,render指定的数据,签名如下: .tmpl([data,][options]) .tmpl([data,][options]) .tmpl([data,][options])
阅读全文
posted @ 2013-11-15 16:20
摘要:方法一 分割例:通过SQL Server存储过程传送数组参数删除多条记录eg. ID 值为'1,2,3' 以下存储过程就是删除表中id号为1,2,3的记录:CREATE PROCEDURE DeleteNews @ID nvarchar(500)as DECLARE @PointerPrev int DECLARE @PointerCurr int DECLARE @TId int Set @PointerPrev=1 while (@PointerPrev 0) Begin set @TId=cast(SUBSTRING(@ID,@PointerPrev,@PointerCu
阅读全文
posted @ 2013-11-01 15:25
|
||