fe-interview/lib/jQuery.md
2019-07-01 06:28:24 +08:00

34 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# jQuery面试题
> 鼓励PR
## 历史题目(最新2019.06.30)
[知识点](#知识点) | [源码](#源码) | [扩展](#扩展) | [Zepto](#Zepto)
### 知识点
- [jQuery.fn的init方法返回的this指的是什么对象为什么要返回this]()
- [jQuery 的属性拷贝(extend)的实现原理是什么如何实现深拷贝]()
- [jquery.extend jquery.fn.extend的区别]()
- [jQuery 的队列是如何实现的队列可以用在哪些地方]()
- [谈一下Jquery中的bind(),live(),delegate(),on()的区别]()
- [JQuery一个对象可以同时绑定多个事件这是如何实现的]()
- [是否知道自定义事件jQuery里的fire函数是什么意思什么时候用]()
- [jQuery 是通过哪个方法和 Sizzle 选择器结合的jQuery.fn.find()进入Sizzle]()
- [针对 jQuery性能的优化方法]()
- [Jquery与jQuery UI有啥区别]()
- [jquery 中如何将数组转化为json字符串然后再转化回来]()
- [jQuery和Zepto的区别各自的使用场景]()
- [针对 jQuery 的优化方法]()
- [Zepto的点透问题如何解决]()
- [jQueryUI如何自定义组件]()
- [jQuery slideUp动画 如果目标元素是被外部事件驱动, 当鼠标快速地连续触发外部元素事件, 动画会滞后的反复执行该如何处理呢?]()
- [JQuery一个对象可以同时绑定多个事件这是如何实现的]()
### 源码
- [你有看过JQuery的源码吗说下它的实现原理是什么]()
### 扩展
### Zepto