jQuery Ready 块在 IDE 中隐藏代码大纲
当我编写以下代码时,无论我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是不要像您演示的那样在内部定义您自己的函数。这是没有必要的。在外部定义您的函数,如下所示:
Just don't define your own functions inside like you demostrated. It's unnecessary. Have your functions defined outside like so:
一种更简单的 onready 方法是:
也许这会解决你的问题......
A simpler way to do the onready is:
Maybe this will solve your problem...