摘要:
1.方法1$('#myId').bind('keypress',function(event){ if(event.keyCode == 13) { alert('你输入的内容为1:' + $('#myId').val()); } }); 2.方法2 $('#myId').on('keypress' 阅读全文
摘要:
1、去除chrome等浏览器默认发光边框 input:focus, textarea:focus { outline: none; } 这样textarea在选中的时候,文字会有点移动,解决方法: input:focus, textarea:focus { outline: none; border 阅读全文
摘要:
ie浏览器hack.demo { padding:10px; padding:9px\9; /* all ie */ padding:8px\0; /* ie8-9 目前应用于IE8的单独hack,情况比较少 */ *padding:5px; /* ie6-7 */ +padding:7px; /* 阅读全文
摘要:
1、PC: 实现禁止滚动事件,在元素上添加css类 body{ height:100%; overflow:hidden; } 再次允许滚动时,移除此css类即可 移动端: function prevent (e) { e.preventDefault(); } $('body').on('touc 阅读全文
摘要:
这里是在http://pangbu.com/jquery-hover-bug/抄过来的,当笔记记下来了。 Jquery 也有 BUG ?是的!Jquery hover 事件在 IE 中就存在 Bug !因为帮朋友做一个在 elegant-box 主题中的特效要用到 Jquery 中的 hover 替 阅读全文
摘要:
.your_input::-webkit-input-placeholder{ color:#b4b5bf !important;;}. your_input:-moz-placeholder{ color:#b4b5bf !important;;}.your_input:-ms-input-pla 阅读全文
摘要:
最近在做轮播图切换图的时候,发现小圆圈在IE10上没法被选中进行切换,原因是只能选中小圆圈的边框。 解决方案:让边框变大,扩大点击范围 阅读全文
摘要:
可以在HTML标签上添加任意以 "data-"开头的属性,这些属性页面上是不显示的,它不会影响到你的页面布局和风格,但它却是可读可写的。 例子:<div class="my-data" data-category="motion">test data</div> 如何读取自定义data属性数据呢? 阅读全文
摘要:
最近在做h5 video的时候,发现给video的默认图片不会充满整个video窗口,就在网上找了很久,终于解决这个问题: video{ width: 100%; height: 100%; background:transparent url('img/1.jpg') 50% 50% no-rep 阅读全文
摘要:
1、react按装: 使用create-react-app快速构建React开发环境 create-react-app 是来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。 create-react-app 自动创建的项目是基于 Webpack + ES6 。 执行 阅读全文