jquery获得下拉框值的代码获取Select :获取select 选中的 text
:$("#ddlRegType").find("option:selected").text();获取select选中的
value:$("#ddlRegType ").val();获取select选中的索引:$(...
分类:
Web程序 时间:
2014-05-27 02:38:48
阅读次数:
270
原文:http://www.crifan.com/csharp_call_explorer_to_open_destinate_folder_and_select_specific_file/C#中调用资源管理器(Explorer.exe)打开指定文件夹
+ 并选中指定文件 + 调用(系统默认的播放...
分类:
其他好文 时间:
2014-05-27 02:27:53
阅读次数:
496
UIButton中的**EdgeInsets是做什么用的?UIEdgeInsetsMakeCreates
an edge inset for a button or view.An inset is a margin around the drawing
rectangle where each s...
分类:
其他好文 时间:
2014-05-27 01:52:22
阅读次数:
297
Sql Server 中一个非常强大的日期格式化函数Select
CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AMSelect
CONVERT(varchar(100), GETDATE(), 1): 05/16/06Select CON...
分类:
数据库 时间:
2014-05-24 07:01:14
阅读次数:
379
Mysql limit
offset假设数据库表student存在13条数据。语句1:select * from student limit 9,4语句2:slect * from
student limit 4 offset 9// 语句1和2均返回表student的第10、11、12、13行//...
分类:
数据库 时间:
2014-05-24 06:10:51
阅读次数:
351
以下为代码示例:全局变量: List CategoryList =
PCS.DAL.EF.Repository.GetInstance().GetCategoryList(); List V_BTUser_Category =
PCS.DAL.EF.Repository.GetInstance()....
分类:
其他好文 时间:
2014-05-24 05:38:09
阅读次数:
303
$pagesize){if($pagevel上一页"."下一页";}$sql="select*frommessagelimit$page,$pagesize";$query=mysql_query($sql);while($row=mysql_fetch_array($query)){echo""....
分类:
Web程序 时间:
2014-05-24 02:34:28
阅读次数:
393
一些比较基础性的数据库知识:相同点:1.truncate和不带where子句的delete、以及drop都会删除表内的数据。2.drop、truncate都是DDL语句(数据定义语言),执行后会自动提交。不同点:1.
truncate 和 delete 只删除数据不删除表的结构(定义)drop 语句...
分类:
数据库 时间:
2014-05-24 01:58:29
阅读次数:
367
Group
By/Having操作符适用场景:分组数据,为我们查找数据缩小范围。说明:分配并返回对传入参数进行分组操作后的可枚举对象。分组;延迟1.简单形式:var q =
from p in db.Products group p by p.CategoryID into g select g;语...
分类:
数据库 时间:
2014-05-20 07:48:14
阅读次数:
531
1.OpenCV中CvArr的定义:在opencv h文件里是这样定义 CvArr :/*
CvArr* is used to pass arbitrary * array-like data structures * into functions
where the particular * ar...
分类:
编程语言 时间:
2014-05-19 15:01:44
阅读次数:
474