JSDoc的jQuery插件文档

时间:2014-07-23 04:13:41

标签: javascript jquery jsdoc jsdoc3

我想知道如何使用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,但它不起作用。

1 个答案:

答案 0 :(得分:5)

根据JSDoc3 docs,您应该在案件中使用@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
 */