Durandal风格的观点应该包含哪些填充物?

时间:2013-05-10 14:59:30

标签: modernizr durandal polyfills

我主要开发内部网络应用程序,其中IE8仍作为主要Web浏览器安装在许多PC上。我想为所有基于Durandal的视图添加HTML5占位符plolyfill https://github.com/ginader/HTML5-placeholder-polyfill。实现这一目标的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

除了根据说明将填充物装入SPA之外,没有特别的考虑因素。当然,因为这个polyfill需要jQuery确保在包含jQuery之前加载它。

e.g。

<head>
    ....
    <link rel="stylesheet" href="placeholder_polyfill.min.css">
    ...
    <script src="placeholder_polyfill.jquery.min.combo.js" charset="utf-8"></script>
    ...
</head>