开发者

jQuery plugin naming convention (for the function)

Which casing looks better t开发者_如何学Pythono you for a jQuery plugin:

$("#foo").runMyPlugin();

or

$("#foo").runmyplugin();

Is there a naming convention for jQuery that prefers on over the other?

Thanks in advance!


I would recommend you the first one, that convention is widely used in JavaScript, even in the core language by itself, the ECMA Specification uses it, e.g.

Array.prototype.toLocaleString
Object.prototype.hasOwnProperty
Object.prototype.propertyIsEnumerable
// etc...

All identifiers are named with camelCase, and only constructor functions are named with the first letter as capital (PascalCase).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜