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
select * from all_tab_comments-- 查询所有用户的表,视图等select
* from user_tab_comments -- 查询本用户的表,视图等select * from
all_col_comments--查询所有用户的表的列名和注释.select * fro...
分类:
数据库 时间:
2014-05-26 22:57:50
阅读次数:
363
http://www.catalogueoflife.org/col/browse/classification这是一个国外的生物信息网站今天的代码可以抓取指定分类的信息(id,学名)没有把多线程写进去,略失败...运用:webclient,regex,io项目在>>>开源中国
1 using Sy...
分类:
其他好文 时间:
2014-05-23 22:08:34
阅读次数:
332
//编写一个程序,让用户可以一次性输入任意多行文本
/*
* OutPutTest.cpp
*
* Created on: 2014年5月19日
* Author: John
*/
#include
#include
#include
#define COL_WIDTH 80
using namespace std;
int main(){
ofstrea...
分类:
编程语言 时间:
2014-05-22 10:42:34
阅读次数:
350
一次AC
二维树状数组,有模版很好办
注意二维树状数组这个下标是[1][1]的
#include
#include
#include
#include
#include
#include
using namespace std;
const int Max = 1030;
int row, col, ar[Max][Max];
// 二维的其实下标为[1][1],这个要记得。
...
分类:
其他好文 时间:
2014-05-21 16:23:34
阅读次数:
271
1 ALTER TABLE table_name CHANGE COLUMN old_col_name
new_col_name datatype; #改变table的列名以及列的类型
分类:
数据库 时间:
2014-05-19 07:58:45
阅读次数:
378
必备的文件和工具
win7.iso/win8.iso
Windows系统ISO镜像
WimTool
BOOT.WIM文件的修改
RegWorkShop
注册表编辑和分析利器
UltraISO
修改win7.iso/win8.iso
全局注意:
①每次修改注册表的时候都...
分类:
其他好文 时间:
2014-05-18 04:32:45
阅读次数:
798
http://www.mrdoob.com/#/131/cloudshttp://www.webgl.com/2012/03/webgl-demo-clouds/
1 2 3 4 5 Mr.doob 6 128 1...
分类:
Web程序 时间:
2014-05-15 09:48:21
阅读次数:
716
PHP 验证码(补充)1、改变验证码背景颜色:imagefill(图片,填充的宽,填充的高,颜色)
$back = imagecolorallocate($img,194,219,255);
imagefill($img,0,0,$back);2、字体颜色随机改变:rand(0,255) $col....
分类:
其他好文 时间:
2014-05-15 01:45:03
阅读次数:
322
一、 创建表
在官方的wiki里,example是这样的:
Sql代码
CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name [(col_name data_type [COMMENT col_comment], ...)] [COMMENT table_comment] [PARTITION...
分类:
数据库 时间:
2014-05-14 14:50:27
阅读次数:
463