2013-01-20 90 views
0

在VS 2012,jQuery的作品的智能感知,但不是我的自定義功能,下面是一個簡單的例子,JavaScript智能感知不能使用簡單的功能?

window.g = {}; 

//#region Public functions 

/// <signature> 
/// <summary>This function will return the current page mode.</summary> 
/// <returns type="bool" /> 
/// </signature> 
g.isPageInEditMode = function() { 
    return true; 
} 

這個函數顯示我的總結。

+0

你嘗試把簽名的功能裏面?在某些情況下,它可能比爲您的解決方案中的每個腳本文件創建* .intellisense.js更清潔。 – daddywoodland

回答

1

名爲XXX.intellisense.js解決問題的一個單獨的文件把這些特殊的註釋,

intellisense.annotate(g, { 
    'isPageInEditMode': function() { 
     /// <signature> 
     /// <summary>This function will return the current page mode.</summary> 
     /// <returns type="Boolean" /> 
     /// </signature> 
    } 
});