在WebMatrix项目中应该放置jquery CDN引用?

时间:2013-04-21 15:22:58

标签: jquery google-api cdn webmatrix

我在这里看到:Where do you include the jQuery library from? Google JSAPI? CDN?这是从CDN(谷歌)中包含jQuery的好方法:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>

由于jQuery 2刚刚发布,我计划使用:

<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

...以及最新的jQueryUI:

<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>

注意:这些片段与上面链接的Stack Overflow上的“规范答案”相同,来自google的jQuery CDN页面:https://developers.google.com/speed/libraries/devguide#jquery-ui

现在我的问题是:在WebMatrix项目中,CDN的引用应该去哪里?在 Web.Config中? _AppStart.cshtml? _SiteLayout.cshtml?或... ???

1 个答案:

答案 0 :(得分:0)

_SiteLayout.cshtml就是这个地方:

. . .
<script src="~/Scripts/jquery-2.0.0.min.js"></script>
<!-- May want to replace the above before deploying with:
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
..and similar for jquery-ui -->
<script src="~/Scripts/jquery-ui-1.9.2.js"></script>
. . .

当然,需要从http://code.jquery.com/jquery-2.0.0.min.js下载jquery-2.0.0.min.js并将其放在项目的Scripts文件夹中。