5
我想知道如何使用JSDoc記錄jQuery插件?我的代碼是: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
,但它不工作。