1 create table department 2 (dept_name varchar(20), 3 building varchar(15), 4 budget numeric(12,2) check...
分类:
数据库 时间:
2014-07-16 21:36:29
阅读次数:
374
(1)默认校验规则(1)required:true 必输字段(2)remote:"check.php" 使用ajax方法调用check.php验证输入值(3)email:true 必须输入正确格式的电子邮件(4)url:true 必须输入正确格式的网址(5)date:true 必须输入正确格式的日期...
分类:
Web程序 时间:
2014-07-16 21:07:47
阅读次数:
220
参考文章[root@oel158 soft]# yum install lrzszLoaded plugins: securitySetting up Install ProcessResolving Dependencies--> Running transaction check---> Pac...
分类:
系统相关 时间:
2014-07-12 00:53:43
阅读次数:
386
Debug (调试版) 汇编和 Release (发行版)
汇编的认识
调试版基本不优化,发行版则一般都优化到极致。
Windows驱动开发中,一般称为Check版本和Free版本
我们暂时只研究Debug(调试版)
for循环C实现:
int func(int a,int b)
{
int c=a+b;
int i;
for(i=0;i<50;i++){
...
分类:
编程语言 时间:
2014-07-10 23:42:14
阅读次数:
284
$('input[name="teams"]:checked').size() 1 // 全选2 $("#quanteam").bind("click", function () {3 $("[name = teams]:checkbox").attr("check...
分类:
编程语言 时间:
2014-07-09 18:13:52
阅读次数:
255
Implement a function to check if a linked list is a palindrome.Reverse the second half of the list and then compare it with the first half./* Assume t...
分类:
其他好文 时间:
2014-07-09 14:25:04
阅读次数:
176
xcode 5.0连接 svn server, check out时出现如下error :The operation couldn’t be completed. (NSURLErrorDomain error -1012.)解决方法:打开终端 然后输入如下命令svn ls xxxx(xxx是你的S...
分类:
其他好文 时间:
2014-07-08 22:36:11
阅读次数:
249
Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings, s1 and s2, write code to check if s2 is a ...
分类:
其他好文 时间:
2014-07-08 21:44:23
阅读次数:
177
1、错误描述
java.lang.IllegalArgumentException:Can not find a java.io.InputStream with the name [inputStream] in the invocation stack.
Check the tag specified for this action
2、错误原因
3、解决办法...
分类:
其他好文 时间:
2014-07-08 18:33:04
阅读次数:
237
TaskdescriptionAnon-emptyzero-indexedarrayAconsistingofNintegersisgiven.Apermutationisasequencecontainingeachelementfrom1toNonce,andonlyonce.Forexample,arrayAsuchthat:A[0]=4A[1]=1A[2]=3A[3]=2isapermutation,butarrayAsuchthat:A[0]=4A[1]=1A[2]=3isnotapermutati..
分类:
其他好文 时间:
2014-07-08 12:28:44
阅读次数:
201