昨天我将项目中的 jQuery 移到了 Microsoft 的 CDN,所以终于让 jQuery intellisense 回来了。耶!但是,我显然需要在我的所有 .js 文件中包含以下内容:
//These references should enable intellisense within this file
///<reference path="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.4.js" />
///<reference path="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/jquery-ui.min.js" />
我希望有一个包含上述引用的单个 js 文件,这样我在所有 js 文件中都有一个单一的、不变的引用,如下所示:
//These references should enable intellisense within this file
///<reference path="/shared/js/stdafx.js" />
这个想法是 stdafx.js 将是包含 jQuery 引用的文件。然后我只有一个地方可以更新版本或添加其他参考。我试了一下,但似乎没有用。任何人都可以想出一种方法来实现这一点吗?