gpt4 book ai didi

javascript - 带有 JSDoc 的 jQuery 插件文档

转载 作者:搜寻专家 更新时间:2023-11-01 04:08:56 25 4
gpt4 key购买 nike

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

最佳答案

根据 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
*/

关于javascript - 带有 JSDoc 的 jQuery 插件文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24901738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com