上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: 外层div ,div 内包含iframe ;如何当内部iframe 高度变化时,外层的div 高度跟着自适应呢?1: 2:function dyniframesize(down) { var pTar = null; if (document.getElementById... 阅读全文
posted @ 2014-10-21 18:48 roscee 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 上面的这种用的是方法类,大方法是register,里面定义的二个小方法,一个是对用户名的check,一个是对密码的check.个人觉得通过域,来对function进行管理,规划最简单明了。 阅读全文
posted @ 2014-10-08 21:21 roscee 阅读(669) 评论(0) 推荐(0) 编辑
摘要: s 阅读全文
posted @ 2014-09-19 09:04 roscee 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 默认搭建后地址:http://localhost:8081/nexus/账号:admin 密码:admin123一:代理仓库central 指向maven 的中央仓库Apache Snapshots 指向apache 的代理maven 仓库具体代理仓库的设置参数如下:二:第三方仓库:用户自己上传的j... 阅读全文
posted @ 2014-09-11 22:04 roscee 阅读(183) 评论(0) 推荐(0) 编辑
摘要: cmdsqlplus/nolog(不要分号) connect/assysdba alterusersysidentifiedby新密码; alterusersystemidentifiedby新密码; 阅读全文
posted @ 2014-09-11 13:51 roscee 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 后台代码:public String getFileName() { String fileName = this.getRequest().getParameter("fileName"); String downloadFileName = fileName; try { } catch... 阅读全文
posted @ 2014-08-06 17:47 roscee 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 一:非声明式事务,利用spring aop 配置此方式无需手动抛出runtimeException 二:声明式事务,利用注解配置信息: @Transactional(rollbackFor = Exception.class)默认情况下,此注解只对Runti... 阅读全文
posted @ 2014-07-30 18:30 roscee 阅读(309) 评论(0) 推荐(0) 编辑
摘要: JSP中的指令包括:page、include、taglib。1.page指令:page指令提供JSP页面的属性,其中定义的属性适合当前JSP页面及所有通过include指令或者动作包含的静态文件,但是不适用于动态文件。例:2.include指令:include指令的作用是把JSP程序、HTML网页文... 阅读全文
posted @ 2014-07-15 22:52 roscee 阅读(493) 评论(0) 推荐(0) 编辑
摘要: 一: 事件: 初始化函数中: //禁用回车 后退事件 document.onkeydown = function () { if (window.event && (window.event.keyCode == 13 || window.event.keyCode== 8)) { window.e 阅读全文
posted @ 2014-07-11 17:56 roscee 阅读(1159) 评论(0) 推荐(0) 编辑
摘要: select * from 表A where exists(select * from 表B where 表B.id=表A.id) 这句相当于 select * from 表A where id in (select id from 表B) 对于表A的每一条数据,都执行select * from 表 阅读全文
posted @ 2014-07-11 09:44 roscee 阅读(267) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页