将函数添加到命名空间
我定义了以下JS构造函数
function FV.Map(element) {
// impl omitted
}
该函数定义导致Firebug中出现以下错误
形式参数之前缺少 (
FV 是一个全局对象,我将其用作所有函数的命名空间。显然这不是将此函数添加到此命名空间的正确方法,我应该使用什么代替?
I've defined the following JS constructor function
function FV.Map(element) {
// impl omitted
}
The function definition causes the following error to appear in Firebug
missing ( before formal parameters
The FV is a global object that I use as a namespace for all my functions. Apparently this is not the right way to add this function to this namespace, what should I use instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更直观的语法可能是这样的......
A more intuitive syntax would perhaps be this...