CSS
- 去除下划线
text-decoration: none;
- 去除input外边框
outline: none;
Js
去除默认事件
obj.preventDefault();
- 做IE兼容
let e = event || window.event;e.preventDefault();
获取同级子代元素
- 获取'.brother1'同级的所有'.brother2'元素
- 方式一
let b2_list = $('.brother1 ~ .brother2 ')
- 方式二
let b2_list = $('.brother1').nextAll('.brother2')
- 返回的是标签元素,JQ引用可使用下标$(b2_list[0])
动画冲突解决办法
- $("#div").stop();//停止当前动画,继续下一个动画
- $("#div").stop(true);//清除元素的所有动画
- $("#div").stop(false, true);//让当前动画直接到达末状态 ,继续下一个动画
- $("#div").stop(true, true);//清除元素的所有动画,让当前动画直接到达末状态
一般使用第二和第三种
网友评论