5

我想知道如何使用 JSDoc 记录 jQuery 插件?我的代码是:

   /**
     * The default configurations of comments
     * @typedef {Object} CommentConfig
     ...
     */

   /**
     * Show comments
     * @method comments
     * @version 1.0.1
     * @param {CommentConfig} options Configuration of comment
     */
    $.fn.comments = function (options) {
        // ..
    }

我想要@method$.fn.comments但它不起作用。

4

1 回答 1

6

根据JSDoc3 文档,您应该@external在您的情况下使用:

/**
 * The jQuery plugin namespace.
 * @external "jQuery.fn"
 * @see {@link http://docs.jquery.com/Plugins/Authoring The jQuery Plugin Guide}
 */

/**
 * Show comments
 * @function external:"jQuery.fn".comments
 */
于 2014-07-26T07:27:24.187 回答