在C#中,我可以在定义类或函数之前创建///开始的注释,这些注释会影响我在编写使用类型或函数的代码时显示的intellisense提示。但它不适用于Javascript。我可以获得这些特别评论和额外提示吗?
答案 0 :(得分:0)
不是远,但评论应该在js函数中。
这是一个例子:
function getArea(radius)
{
/// <summary>Determines the area of a circle that has the specified radius parameter </summary>
/// <param name="radius" type="Number">The radius of the circle.</param>
/// <returns type="Number">The area.</returns>
var areaVal;
areaVal = Math.PI * radius * radius;
return areaVal;
}