我昨天把項目中的jQuery移到了微軟的CDN中,最後讓jQuery intellisense回來了。好極了!然而,我顯然需要包括在我所有的.js文件如下:jQuery Intellisense:vsdoc的公共參考文件(stdafx)
//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引用的文件。然後我只有一個的地方來更新版本或添加其他參考。我放棄了它,但似乎沒有奏效。任何人都可以找出一種方法來實現這一點嗎?