blob: d7ca530c9e80bf33d7d8a4b53c1b0ea648d89e5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
title: Polyfill
slug: Glossary/Polyfill
translation_of: Glossary/Polyfill
---
<p>Polyfill 是一块代码(通常是 Web 上的 JavaScript),用来为旧浏览器提供它没有原生支持的较新的功能。</p>
<p>比如说 polyfill 可以让 IE7 使用 Silverlight 插件来模拟 HTML Canvas 元素的功能,或模拟 CSS 实现 rem 单位的支持,或 {{cssxref("text-shadow")}},或其他任何你想要的功能。</p>
<h2 id="了解更多">了解更多</h2>
<h3 id="常识">常识</h3>
<ul>
<li><a href="https://remysharp.com/2010/10/08/what-is-a-polyfill">什么是 polyfill?</a> (Remy Sharp 著,概念发明者)</li>
</ul>
|