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