jQuery Ready 块在 IDE 中隐藏代码大纲

发布于 2024-12-17 01:48:48 字数 304 浏览 3 评论 0原文

当我编写以下代码时,无论我使用 Aptana、Dreamweaver 还是 Eclipse,我都无法在大纲视图中的 onready 块中看到函数:

$(document).ready(function(){
   function myFunction(){
   }
   function myFunction2(){
   }
});

基本上,我在大纲中看到的唯一内容就是 onready,如果我想查看我的所有功能。我可以尝试使用什么技术或方法来处理这种情况,既可以在大纲视图中查看所有功能,又可以使用 onready?

When I write the following code, whether Im using Aptana, Dreamweaver or Eclipse, I can never see functions in the onready block in the outline view:

$(document).ready(function(){
   function myFunction(){
   }
   function myFunction2(){
   }
});

Basically the only thing I see in outline is the onready and I have to remove the onready if I want to see all my functions. What technique or way of handling this situation can I try to both see all the functions in outline view and still use onready?

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

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

发布评论

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

评论(2

抠脚大汉 2024-12-24 01:48:48

我可以尝试什么技巧或方法来处理这种情况
大纲视图中的所有功能仍然使用 onready?

只是不要像您演示的那样在内部定义您自己的函数。这是没有必要的。在外部定义您的函数,如下所示:

function myFunction(){

}

function myFunction2(){

}

$(document).ready(function() {
    myFunction();
    myFunction2();    

});

What technique or way of handling this situation can I try to both see
all the functions in outline view and still use onready?

Just don't define your own functions inside like you demostrated. It's unnecessary. Have your functions defined outside like so:

function myFunction(){

}

function myFunction2(){

}

$(document).ready(function() {
    myFunction();
    myFunction2();    

});
倾城°AllureLove 2024-12-24 01:48:48

一种更简单的 onready 方法是:

$(function(){
 ... code here ...
})

也许这会解决你的问题......

A simpler way to do the onready is:

$(function(){
 ... code here ...
})

Maybe this will solve your problem...

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