码迷,mamicode.com
首页 > 2015年07月31日 > 全部分享
extjs frame=true 去边框处理
1layout:{type:'table',columns:2},2frame:true,3defaults:{labelAlign:'right'},4border:false,5style:"border-color:#000000;border-style:solid;border-width...
分类:Web程序   时间:2015-07-31 12:14:43    阅读次数:147
CodeForces 445E DZY Loves Colors
DZY Loves ColorsTime Limit: 2000msMemory Limit: 262144KBThis problem will be judged onCodeForces. Original ID:445E64-bit integer IO format:%I64d Java ...
分类:其他好文   时间:2015-07-31 12:15:32    阅读次数:238
html5 - history 历史管理
参考文章: w3c : http://www.w3.org/html/ig/zh/wiki/HTML5/history 张鑫旭 : http://www.zhangxinxu.com/wordpress/2013/06/html5-history-api-pushstate-replacesta.....
分类:Web程序   时间:2015-07-31 12:16:00    阅读次数:129
enmo_day_10
RMAN创建备份集 :backup as backupset format ‘/backup/df_%d_%s_%p/bus’ tablespace hr_data;创建镜像副本 :(备份慢,恢复快)backup as datafile ‘/oradata/users_01_db01.dbf’;ba...
分类:其他好文   时间:2015-07-31 12:15:39    阅读次数:114
C语言试题
C语言试题
分类:编程语言   时间:2015-07-31 12:15:50    阅读次数:145
代码优化
if (foo) bar(); ==> foo&&bar();if (!foo) bar(); ==> foo||bar();if (foo) return bar(); else something(); ==> {if(foo)return bar();something()}
分类:其他好文   时间:2015-07-31 12:16:18    阅读次数:94
[转]Spring MVC 4常用的那些注解
Spring从2.5版本开始在编程中引入注解,用户可以使用@RequestMapping, @RequestParam, @ModelAttribute等等这样类似的注解。到目前为止,Spring的版本虽然 Controller控制器是通过服务接口定义的提供访问应用程序的一种行为,它解释用户的输入....
分类:编程语言   时间:2015-07-31 12:14:18    阅读次数:190
DIV 文字强制换行
一、对于div强制换行1.(IE浏览器)white-space:normal; word-break:break-all;这里前者是遵循标准。#wrap{white-space:normal; width:200px; }或者#wrap{word-break:break-all;width:200p...
分类:其他好文   时间:2015-07-31 12:14:29    阅读次数:101
转:RAC中比较replay, replayLast, and replayLazily
A co-worker recently asked me about the difference between-replay,-replayLast, and-replayLazilyin theReactiveCocoalibrary. I had a vague understanding...
分类:其他好文   时间:2015-07-31 12:14:46    阅读次数:171
函数里面有函数叫函数的闭包:子函数可以调用父函数变量,如果子函数找不到变量,那么整条作用域链的变量都会被保存
1 2 3 4 5 无标题文档 6 23 24 25 26 27 结果:弹出两次a=1;解释:先执行函数abc(),a=1是里面的局部变量,优先于全局变量,所以第一遍的alert结果是abc的1; 再执行函数c(),functionc是functionabc的子函数 ,而functio...
分类:其他好文   时间:2015-07-31 12:14:53    阅读次数:183
区间修改点查询 HDU1556
1 #include 2 #include 3 4 using namespace std; 5 6 struct Node 7 { 8 int l,r; 9 int v; 10 int lz; 11 }bn[400000]; 12 13 voi...
分类:其他好文   时间:2015-07-31 12:13:52    阅读次数:124
Java中的三目运算符
开发过程中我们经常会用到三目运算符,那下面的的两种情况你能说一下那种更合理吗用法A:...Map result = new HashMap()......Integer count = result.get(key);count == null ? result.put(key,1) : resul...
分类:编程语言   时间:2015-07-31 12:12:14    阅读次数:181
频偏(转载)
转自:http://www.cnblogs.com/ty10114g/p/3609776.html单位:(PPM)ppm表示-每百万单位(parts per million)。在用作表示频率偏差时,它表示在一个特定中心频率下,允许偏差的值,频率以赫兹为单位。ppm和赫兹之间的换算关系如下式:△f=(...
分类:其他好文   时间:2015-07-31 12:11:46    阅读次数:129
使用culr
使用curl在采集有语言要求的网站时,首先需要发送带有语言设置的请求,再发送你要的请求如:注:vget(); 这里没提供;$url='http://www.hotels.com/?locale=en_US&pos=HCOM_US';vget($url); $url="http://www.hotel...
分类:其他好文   时间:2015-07-31 12:14:32    阅读次数:242
struts2使用response和request功能
struts.xml: ActionDemo1.java:package com.itheima.actions;import java.io.IOException;import javax.servlet.http.HttpServletReque...
分类:其他好文   时间:2015-07-31 12:14:11    阅读次数:119
enmo_day_07
数据备份物理备份 : 底层数据块逻辑备份 :exp(export), imp(import) 导入导出工具,提取成dump文件,再将dump文件放入数据库expdp, impdp 数据蹦utilities手册里有exp -helpwhich expexp SCOTT/TIGER GRANTS=Y T...
分类:其他好文   时间:2015-07-31 12:12:10    阅读次数:165
DataTable循环删除行
1.如果只是想删除datatable中的一行,可以用DataRow的delete,但是必须要删除后让DataTable知道,所以就要用 到.AcceptChanges()方法,原因是这种删除只是标识性删除,就像我们通常在数据库中用到的IsDelete字段。2.彻底删除就要用到datatable的.....
分类:其他好文   时间:2015-07-31 12:14:00    阅读次数:113
2253条   上一页 1 ... 92 93 94 95 96 97 98 ... 133 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!