2015年6月30日
摘要: alert($(window).height()); //浏览器当前窗口可视区域高度 alert($(document).height()); //浏览器当前窗口文档的高度 alert($(document.body).height());//浏览器当前窗口文档body的高度 alert($(doc... 阅读全文
posted @ 2015-06-30 16:45 火玉 阅读(137) 评论(0) 推荐(0) 编辑
  2015年2月27日
摘要: $(':input','#myform').not(':button,:submit,:reset,:hidden').val('').removeAttr('checked').removeAttr('selected'); 阅读全文
posted @ 2015-02-27 17:12 火玉 阅读(5370) 评论(0) 推荐(0) 编辑
  2015年2月13日
摘要: ORACLE支持五种类型的完整性约束NOT NULL (非空)--防止NULL值进入指定的列,在单列基础上定义,默认情况下,ORACLE允许在任何列中有NULL值.CHECK (检查)--检查在约束中指定的条件是否得到了满足.UNIQUE (唯一)--保证在指定的列中没有重复值.在该表中每一个值或者... 阅读全文
posted @ 2015-02-13 11:10 火玉 阅读(43104) 评论(0) 推荐(4) 编辑
摘要: 1、说明:创建数据库CREATE DATABASE database-name2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testB... 阅读全文
posted @ 2015-02-13 09:58 火玉 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 格式: mysql -h主机地址 -u用户名 -p用户密码1、连接到本机上的MYSQL。 首先打开DOS窗口,然后进入目录mysql\bin,再键入命令mysql -u root -p,回车后提示你输密码.注意用户名前可以有空格也可以没有空格,但是密码前必须没有空格,否则让你重新输入密码。如果刚安装... 阅读全文
posted @ 2015-02-13 09:51 火玉 阅读(169) 评论(0) 推荐(0) 编辑
  2015年1月20日
摘要: 处理千万级以上的数据提高查询速度的方法:1.应尽量避免在 where 子句中使用!=或操作符,否则将引擎放弃使用索引而进行全表扫描。2.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。3.应尽量避免在 where 子句中对字段进行 null 值... 阅读全文
posted @ 2015-01-20 13:26 火玉 阅读(1180) 评论(0) 推荐(0) 编辑
摘要: escape()、encodeURI()、encodeURIComponent()区别详解JavaScript中有三个可以对字符串编码的函数,分别是: escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIC... 阅读全文
posted @ 2015-01-20 10:16 火玉 阅读(158) 评论(0) 推荐(0) 编辑
  2014年5月28日
摘要: function printsEnergy(){ var data=$("#seleMenu").children('option:selected').val(); var startDate = $("#startDate").val(); var endDate = $("#endDate")... 阅读全文
posted @ 2014-05-28 09:16 火玉 阅读(2667) 评论(0) 推荐(0) 编辑
  2014年4月21日
摘要: http://blog.sina.com.cn/s/blog_682e9dfd0100y31o.html 转载。 阅读全文
posted @ 2014-04-21 15:46 火玉 阅读(136) 评论(0) 推荐(0) 编辑
  2014年4月3日
摘要: 在使用的使用切记::::type="post"不能省略,否则会出现返回的自增值为0的情况,dao层@Override public int addAirUser(AirUser airUser) { return ((Integer) getSqlMapClientTemplate().insert("addAirUser", airUser)) .intValue(); }bean层 */ private int userId; priv... 阅读全文
posted @ 2014-04-03 10:14 火玉 阅读(436) 评论(0) 推荐(0) 编辑