摘要:
function foucs(){ var client_y = document.body.clientHeight;// parent.scroll(0,clinet_y/2);把页面向上滚动半个页面的距离 } 阅读全文
摘要:
前端开发基础模范 Sass基础教程 雪碧图 CSS三角形生成工具 animate动画 渐变取色器 阅读全文
摘要:
@media screen and(-ms-high-contrast:active),(-ms-high-contrast:none){} IE10--IE11 @media screen and (min-width:0\0){} IE9--IE11 @media screen\9 {} IE7 阅读全文
摘要:
HTML CSS js 阅读全文
摘要:
1.父组件向子组件传递数据 阅读全文
摘要:
1 2 const uploadImg= function () { var formdata = new FormData(); formdata.append("pic", $('.addpic')[0].files[0]); $.ajax({ url: '', type: 'POST', data: formd... 阅读全文
摘要:
1//多张图片上传前预览 function previewFiles() { 2 var preview = document.querySelector('#box'); 3 var files = document.querySelector('input[type=file]').files 4 function readAndPreview(file) {... 阅读全文
摘要:
1.Error in render function: "TypeError: Cannot read property 'matched' of undefined 原因:之前不知道,在引用路由时创建变量名是规定好的 const route = new VueRouter({ routers}) 阅读全文
摘要:
IE6下面元素的宽高小于16PX时 会默认以16PX显示(最小宽高) 解决办法:设置元素overflow:hidden; 当文字全是字母或数字时会超容器对溢出隐藏的样式失效, 解决办法:设置下父级强制折行,字母断行就OK 1、终极方法:条件注释 <!--[if lte IE 6]> 这段文字仅显示在 阅读全文