2015年9月28日
摘要: 至 阅读全文
posted @ 2015-09-28 09:31 火玉 阅读(279) 评论(0) 推荐(0)
  2015年9月25日
摘要: http://www.ycku.com/course/ 飘城web俱乐部http://www.imooc.com/ 慕课网 阅读全文
posted @ 2015-09-25 09:28 火玉 阅读(125) 评论(0) 推荐(0)
  2015年9月17日
摘要: var reg =/[^u4e00-u9fa5]/; if(!reg.test(custname)){ alert("客户姓名只能输入汉字"); return; } 阅读全文
posted @ 2015-09-17 16:07 火玉 阅读(1244) 评论(0) 推荐(0)
  2015年8月31日
摘要: 当鼠标移到某个地方的时候,在旁边飘出一个DIV,离开则消失。是使用了某位大大封装的一个函数,稍微改了下。原文地址: 当鼠标移动上去显示一个层,在这个对象的旁边,并且可以给这个层添加值效果如下:函数代码,放到一个JS文件里:[javascript] view plaincopyprint?/** *... 阅读全文
posted @ 2015-08-31 12:14 火玉 阅读(409) 评论(0) 推荐(0)
  2015年7月8日
摘要: $("input").filter(":radio").removeAttr("checked"); 阅读全文
posted @ 2015-07-08 11:33 火玉 阅读(1046) 评论(0) 推荐(0)
摘要: DELETE FROM yys_jbxx a WHERE rowid > ( SELECT min(rowid) FROM yys_jbxx b WHERE b.id = a.id and b.comp_name=a.comp_name); 阅读全文
posted @ 2015-07-08 11:17 火玉 阅读(206) 评论(0) 推荐(0)
  2015年6月30日
摘要: alert($(window).height()); //浏览器当前窗口可视区域高度 alert($(document).height()); //浏览器当前窗口文档的高度 alert($(document.body).height());//浏览器当前窗口文档body的高度 alert($(doc... 阅读全文
posted @ 2015-06-30 16:45 火玉 阅读(143) 评论(0) 推荐(0)
  2015年2月27日
摘要: $(':input','#myform').not(':button,:submit,:reset,:hidden').val('').removeAttr('checked').removeAttr('selected'); 阅读全文
posted @ 2015-02-27 17:12 火玉 阅读(5383) 评论(0) 推荐(0)
  2015年2月13日
摘要: 1、说明:创建数据库CREATE DATABASE database-name2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testB... 阅读全文
posted @ 2015-02-13 09:58 火玉 阅读(391) 评论(0) 推荐(0)
摘要: 格式: mysql -h主机地址 -u用户名 -p用户密码1、连接到本机上的MYSQL。 首先打开DOS窗口,然后进入目录mysql\bin,再键入命令mysql -u root -p,回车后提示你输密码.注意用户名前可以有空格也可以没有空格,但是密码前必须没有空格,否则让你重新输入密码。如果刚安装... 阅读全文
posted @ 2015-02-13 09:51 火玉 阅读(175) 评论(0) 推荐(0)