0

在 VS 2012 中,jquery 的智能感知工作但不是我的自定义函数,这是一个简单的例子,

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;
}

此功能确实向我展示了摘要。

4

1 回答 1

1

将这些特殊注释放在一个名为 XXX.intellisense.js 的单独文件中解决了这个问题,

intellisense.annotate(g, {
    'isPageInEditMode': function () {
        /// <signature>
        ///   <summary>This function will return the current page mode.</summary>
        ///   <returns type="Boolean" />
        /// </signature>
    }
});
于 2013-01-21T06:03:24.520 回答