在 $('document').ready 中调用函数

发布于 2025-01-05 09:10:29 字数 490 浏览 2 评论 0原文

我在 $('document').ready 中定义了一个函数。

$('document').ready(function() {
  function visit(url) {
    $.ajax({
      url: url,
      container: '#maincontainer',
      success: function(data) {
        init();
      }
    });
  }

  function init() {
    ...
  }
)};

但是当我在 Chrome 控制台中调用 init() 时,我得到:ReferenceError: init is not Defined

更新:感谢大家的帮助。我做了window.init = init;并且它工作得很好。

I have a function defined inside a $('document').ready.

$('document').ready(function() {
  function visit(url) {
    $.ajax({
      url: url,
      container: '#maincontainer',
      success: function(data) {
        init();
      }
    });
  }

  function init() {
    ...
  }
)};

But when I call init() in Chrome Console I get : ReferenceError: init is not defined.

Update: Thank you all for your help. I didwindow.init = init; and it works perfectly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

何其悲哀 2025-01-12 09:10:30

您的 init 函数包含在您传递给 jQuery.ready 的函数范围内。这是一件好事,它意味着您没有创建不必要的全局。

如果需要将函数导出到全局范围,可以通过显式分配给 window 上的属性来实现,例如:

window.init = init;

由于 window浏览器上的全局对象,这将允许您从 Chrome 的控制台调用它,而无需窗口。 前缀。但只有在绝对必要时才这样做,全球范围已经足够拥挤了。

Your init function is contained by the scope of the function you've passed to jQuery.ready. This is a good thing, it means you haven't created an unnecessary global.

If you need to export the function to the global scope, you can do so by explicitly assigning to a property on window, e.g.:

window.init = init;

Since window is the global object on browsers, that would allow you to call it from Chrome's console without the window. prefix. But only do that if absolutely necessary, the global scope is already crowded enough.

∞琼窗梦回ˉ 2025-01-12 09:10:30

函数声明(例如 function init() {})仅限于它们定义的范围。如果您想在其他地方使用 init,请执行以下操作:

var init;
$('document').ready(function() {
    init = function() {};
});

Function declarations, like your function init() {}, are restricted to the scope they're defined in. If you want to use init elsewhere, do this:

var init;
$('document').ready(function() {
    init = function() {};
});
不再让梦枯萎 2025-01-12 09:10:30

我认为您想将函数定义放在就绪函数之外,即使函数引用了文档,文档也没有必要准备好定义函数。请记住,函数内部的引用只有在函数实际执行时才会执行,函数定义就像定义文本常量一样。请改用以下内容:

function visit(url) {
    $.pjax({
        url: url,
        container: '#maincontainer',
        success: function(data) {
        init();
        }
    });
}

function init() {
    ...
}

$(function () {
    init();
});

I think you want to put your function definition outside the ready function, it is not necessary for the document to be ready to define a function even if the function references the document. Keep in mine the references inside a function are not performed until the function is actually executed, a function definition is just like defining a text constant. Use the following instead:

function visit(url) {
    $.pjax({
        url: url,
        container: '#maincontainer',
        success: function(data) {
        init();
        }
    });
}

function init() {
    ...
}

$(function () {
    init();
});
海之角 2025-01-12 09:10:30

尝试这样的事情:

$('document').ready(function() {

  var objScope = this;

  function visit(url) {
    $.pjax({
      url: url,
      container: '#maincontainer',
      success: function(data) {
        objScope.init();
      }
    });
  }

  function init() {
    ...
  }
)};

Try something like this:

$('document').ready(function() {

  var objScope = this;

  function visit(url) {
    $.pjax({
      url: url,
      container: '#maincontainer',
      success: function(data) {
        objScope.init();
      }
    });
  }

  function init() {
    ...
  }
)};
凉栀 2025-01-12 09:10:30

函数仅在您定义它们的范围内定义。

如果您坚持使用此方法,请改用 init = funciton() 语法。这将创建一个可以在任何地方引用的全局变量(因为您不会在那里放置 var)。

也就是说,定义函数可以随时完成,将它们放在 .ready() 中绝对没有意义。

Functions are only defined the scope you define them in.

If you insist on this method, use init = funciton() syntax instead. This will create a global variable (since you're not going to put a var there) which can be referenced anywhere.

That said, defining functions can be done at any time, there is absolutely no point in putting them in .ready().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文