Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
创建 jQuery UI 小部件时,是否可以使命名空间和/或插件名称 CamelCase 或者约定全部小写..空格替换为下划线?
只是想知道可能性和约定。
可以使用您想要的任何约定,它只是一个名称。您甚至可以使用空格,但是您只能使用括号语法来调用它。我建议使用 camelCase(注意小写首字母和所有空格/破折号删除)
$(sel).myPlugin() $(sel).MyPlugin() $(sel).MYPLUGIN() $(sel).MyPlUgIn() $(sel)["My Superawsome Fantastic Plugin"]()