Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery 1.7 引入了$.support.fixedPosition,但它在 1.8 中不知何故消失了。我在更改日志中找不到任何内容。任何提示它已被移动,或者是否已被删除?
$.support.fixedPosition
引用文档:
由于 jQuery 在内部需要这些测试,因此它们必须在每次页面加载时执行。尽管下面记录了其中一些属性,但它们不受长期弃用/删除周期的影响,并且一旦内部 jQuery 代码不再需要它们,它们可能会被删除。 [...] 对于您自己项目的功能检测需求,我们强烈建议使用诸如 Modernizr 之类的外部库,而不是依赖 jQuery.support 中的属性。
由于 jQuery 在内部需要这些测试,因此它们必须在每次页面加载时执行。尽管下面记录了其中一些属性,但它们不受长期弃用/删除周期的影响,并且一旦内部 jQuery 代码不再需要它们,它们可能会被删除。
[...]
对于您自己项目的功能检测需求,我们强烈建议使用诸如 Modernizr 之类的外部库,而不是依赖 jQuery.support 中的属性。
似乎它确实在 v1.7.2 和 v1.8.0 之间的某个时间被删除了。