码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
get the text value of a selected option.
1 1, get value:$( "#myselect" ).val();//=> 12, get (inner)text:$( "#myselect option:selected" ).text();// => "Mr"ref:How do I get the text value of a ...
分类:其他好文   时间:2014-05-27 02:25:09    阅读次数:223
批处理--执行sql(mysql数据库)
@echo offrem test.sql文件for %%i in (test.sql) do ( echo excute %%i mysql -u用户名 -p密码 -D数据库名 < %%i)echo successpause
分类:数据库   时间:2014-05-23 23:59:32    阅读次数:569
System V共享内存
shmread.c #include #include #include #include #include #include #include #include #include #include #include #define ERR_EXIT(m)         do         {           ...
分类:其他好文   时间:2014-05-23 08:21:49    阅读次数:274
TOM猫
#import "CHViewController.h" @interface CHViewController () @end @implementation CHViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view,...
分类:其他好文   时间:2014-05-22 12:38:44    阅读次数:369
zoj 3210 A Stack or A Queue? (数据结构水题)
?? A Stack or A Queue? Time Limit: 1 Second      Memory Limit: 32768 KB Do you know stack and queue? They're both important data structures. A stack is a "first in last out" (FILO) data ...
分类:其他好文   时间:2014-05-22 12:24:38    阅读次数:236
Why Do People Hate SharePoint?
Why Do People Hate SharePoint?         2012年十一月第三星期期间,微软在拉斯维加斯的曼德勒海湾酒店主持了年度SharePoint会议,几乎囊括了所有SharePoint能做的霸气的作品。与会人物都是热切富有激情的SharePoint拥护者,会场人声鼎沸。最近在那边度假的人可能会得出结论:每个人都“爱”SharePoint。         然而,和来自...
分类:其他好文   时间:2014-05-22 08:27:01    阅读次数:223
用信号量解决生产者消费者问题
用信号量解决生产者消费者问题: ipc.h #ifndef _IPC_H_ #define _IPC_H_ #include #include #include #include #include #include #include #include #include #define ERR_EXIT(m)         do \...
分类:其他好文   时间:2014-05-22 07:20:09    阅读次数:366
leetcode:Reorder List
问题 Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For example, Given {1,2,3,4}, reorde...
分类:其他好文   时间:2014-05-22 07:04:46    阅读次数:298
mysql 自定义存储过程和触发器
mysql 自定义存储过程和触发器 --存储过程示范 DROP PROCEDURE IF EXISTS PRO_TEST; CREATE PROCEDURE PRO_TEST(IN NUM_IN INT,OUT NUM_OUT INT,INOUT NUM_INOUT) BEGIN //DO ANYTHING YOU WANT END; 参数解释: in : 就是输入参数,输...
分类:数据库   时间:2014-05-22 06:42:40    阅读次数:345
JS中offsetTop、clientTop、scrollTop、offsetTop各属性介绍
这里是javascript中制作滚动代码的常用属性页可见区域宽: document.body.clientWidth;网页可见区域高: document.body.clientHeight;网页可见区域宽: document.body.offsetWidth (包括边线的宽);网页可见区域高: do...
分类:Web程序   时间:2014-05-19 13:49:01    阅读次数:387
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!