12 2017 档案

摘要: 阅读全文
posted @ 2017-12-22 14:42 ghfjj 阅读(112) 评论(0) 推荐(0)
摘要:第一步; 停止数据库运行 第二部: Mysql目录下的my.ini文件打开,找到[mysqld],在下面加上这句话:skip_grant_tables,这样可以跳过密码直接进入 第三部: 开启数据库运行,此时可以随便输入密码,即可进入mysql 第四部: 在Mysql的bin目录下运行 mysql 阅读全文
posted @ 2017-12-21 15:35 ghfjj 阅读(1125) 评论(0) 推荐(0)
摘要:下面的这个代码是网络上的代码,做一个分析记录,原网址如下 http://www.jq22.com/jquery-info3836 html: css: js: 阅读全文
posted @ 2017-12-21 12:00 ghfjj 阅读(865) 评论(0) 推荐(0)
摘要://选择与取消选择 $('input').prop('checked',true); $('input').prop('checked',false); //判断是否选中,在做反选的操作 if($(this).prev('.spaninput').children('input').is(":che 阅读全文
posted @ 2017-12-21 11:55 ghfjj 阅读(386) 评论(0) 推荐(0)
摘要:一种: <a href="javascript:if(confirm('确实要删除该内容吗?')){location='http://www.google.com'}">弹出窗口</a> 二种: <script language="JavaScript"> function delete_confi 阅读全文
posted @ 2017-12-18 11:05 ghfjj 阅读(10936) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-12-18 09:43 ghfjj 阅读(405) 评论(0) 推荐(0)
摘要:1、键盘按键属性 2、input与propertychange(兼容ie)的实时监听,支持复制粘贴(兼容鼠标右键粘贴) 阅读全文
posted @ 2017-12-15 15:20 ghfjj 阅读(256) 评论(0) 推荐(0)
摘要:缩放: iScroll-5 http://lab.cubiq.org/iscroll5/demos/zoom/ http://wiki.jikexueyuan.com/project/iscroll-5/zoom.html 剪切(例如头像): photoClip: http://www.jq22.c 阅读全文
posted @ 2017-12-14 13:34 ghfjj 阅读(230) 评论(0) 推荐(0)
摘要:box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);-webkit-transform: translate3d(0, -2px, 0);transform: translate3d(0, -2px, 0); transition: all 0.2s linear; 阅读全文
posted @ 2017-12-13 11:26 ghfjj 阅读(261) 评论(0) 推荐(0)
摘要:<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-59effacb0a4e93a8"></script> addthis 阅读全文
posted @ 2017-12-12 11:25 ghfjj 阅读(548) 评论(0) 推荐(0)
摘要:var mySwiper = new Swiper('.swiper-container',{ slidesPerView :'auto', autoplay:5000, direction:'vertical', grabCursor:true, autoplayDisableOnInteraction:false, mousewheelContro... 阅读全文
posted @ 2017-12-08 09:40 ghfjj 阅读(15820) 评论(0) 推荐(1)
摘要:$(document).ready(function(){ var $liCur = $(".nav ul li.cur"), curP = $liCur.position().left, curW = $liCur.outerWidth(true), $slider = $(".curBg"), $navBox = $(".... 阅读全文
posted @ 2017-12-05 16:20 ghfjj 阅读(907) 评论(0) 推荐(0)
摘要:flex布局使用justify-content: space-between;,由于数量不足,导致间距空白, 建议用js填充元素 使用! flex_empty($('.activity_online_list'),'li',3,'empty'); 参数说明:1:直接的外包裹框,一般为ul,2:对应的 阅读全文
posted @ 2017-12-04 09:41 ghfjj 阅读(1062) 评论(0) 推荐(0)
摘要:Examples 篮球 乒乓球 足球 阅读全文
posted @ 2017-12-02 17:21 ghfjj 阅读(2247) 评论(0) 推荐(0)
摘要:pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com pakegename比如pip install -i http://pypi.douban.com/simple/ --trusted-host  阅读全文
posted @ 2017-12-02 10:08 ghfjj 阅读(188) 评论(0) 推荐(0)