- 博客(2)
- 收藏
- 关注
原创 JaveScript中caller和callee的区别
1.caller返回调用当前函数的函数调用 1.这个属性只有在函数调用时才有用 2.如果在js程序中,函数是由顶层调用的话,则返回null function a(){ console.log(a.caller); } function b(){ a(); } b();//function b(){ a(); } a();//null 2.callee返回正在执行的函数本身的引用,它是argueme...
2018-12-16 22:05:39
126
原创 纯css实现div水平垂直居中的方法
在学习大前端过程中,总结了一下元素的几种水平垂直居中的方法 实现如图: 说明:前四种方法使用到的class为wrap的div都设置为{display:relative;} 1.子级设置 absolute+margin:auto,top、left、right、bottom的值相等即可,不一定要都是0 2.子级设置absolute+left:50%;top:50%;margin-left:减去此元...
2018-12-13 16:42:11
521
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人