摘要: 算法学习,先熟悉一下C语言哈!!!#include #includeint main(){ printf("%d\n",1+2); getch(); return 0;}计算1+2的值结果:3进一步计算加减乘除#include #includeint main(){ printf("%d\n",1+2); printf("%d\n",3-4); printf("%d\n",5*6); printf("%d\n",8/4); printf("%d\n",8/5); getch( 阅读全文
posted @ 2013-07-11 21:43 TBHacker 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 一,运作流程jQuery validate要想运作,首先要加载相应的js 加载完毕之后,就可以使用了,但是什么时候才真正的触发验证效果呢答案是,表单提交时触发!具体的流程如下: //第二步:接收到提交信息,进行验证 $("#form1").validate({ submitHandler:function(form){ //第三步:验证完毕,真正的提交 ... 阅读全文
posted @ 2013-07-11 17:11 TBHacker 阅读(2797) 评论(1) 推荐(0) 编辑