将函数添加到命名空间

发布于 2024-12-10 21:41:47 字数 239 浏览 0 评论 0原文

我定义了以下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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

霓裳挽歌倾城醉 2024-12-17 21:41:48
window.FV = window.FV || {}
FV.Map = function(element) {
    //…
}
window.FV = window.FV || {}
FV.Map = function(element) {
    //…
}
终止放荡 2024-12-17 21:41:48

更直观的语法可能是这样的......

window.FV = {
    Map: function(element){
       Do Something
    },
    Morefuncs: function(element, element2){
       Do something else
    }
};

A more intuitive syntax would perhaps be this...

window.FV = {
    Map: function(element){
       Do Something
    },
    Morefuncs: function(element, element2){
       Do something else
    }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文