如何在我的代码中找到特定的 Javascript

发布于 2024-11-09 00:16:46 字数 174 浏览 0 评论 0原文

问题是我有一个巨大的 Javascript 代码,它被分解成许多文件。
我似乎无法找到特定的 javascript 代码在哪里。

如果你处在我的位置,你会如何寻找?

我安装了 firebug lite,但不知道如何使用它。谢谢。

PS 由于某种原因我无法对此发表评论。对不起。

The problem is that I have a huge Javascript code, it's broken down into many files.
And I can't seem to find where a particular javascript code is .

How would you go about finding if you were in my place?

I have the firebug lite installed but no clue how to use it. Thank you.

P.S. I'm not able to comment on SO for some reason. Sorry.

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

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

发布评论

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

评论(4

や三分注定 2024-11-16 00:16:46

查看链接,特别是以下标题:

轻松查找脚本

许多 Web 应用程序由以下部分组成
相当多的文件,并找到
您想要调试的可以是
杂务。 Firebug 的脚本文件选择器
对文件进行排序和组织
干净的列表将帮助您找到任何
快速归档。

直接前往108线,不经过go

很多时候你想直接跳转
到脚本的特定行。
这样做再简单不过了
在快捷栏中输入行号
搜索框,前面带有井号
标志,如屏幕截图所示
右边。

查找脚本:在此处输入图像描述 搜索脚本:在此处输入图像描述

Check out this link, specifically these headlines:

Find scripts easily

Many web applications are comprised of
quite a number of files, and finding
the one you want to debug can be a
chore. Firebug's script file chooser
sorts and organizes files into very
clean list that will help you find any
file in a snap.

Go directly to line 108, do not pass go

Often times you want to jump directly
to a specific line of your script.
Doing this couldn't be easier, just
type the line number into the quick
search box, preceded by the pound
sign, as seen in the screen shot on
the right.

Find scripts: enter image description here Search scripts: enter image description here

堇色安年 2024-11-16 00:16:46

我会使用带有在文件中查找选项的文本编辑器,例如

在文件中查找

I would use a text editor with a Find In Files option like Notepad++. Most IDEs would also provide this search option.

Find in Files

终止放荡 2024-11-16 00:16:46

总会有: grep -r 'function myHardtoFindFunction(' src/

在 unix 系统或其他具有 GNU 实用程序的系统上,

there's always: grep -r 'function myHardtoFindFunction(' src/

on a unix system or another system with GNU utilities.

梦忆晨望 2024-11-16 00:16:46

你可以在firebug搜索框中搜索函数名称,它也会在多个js文件中搜索,

只需打开firebug,右侧应该是一个搜索框。如果您雄心勃勃,甚至还有用于搜索多个文件、不区分大小写和使用正则表达式的复选框。

you can search for function names in the firebug search box, which will also search across multiple js files

just open firebug and on the right hand side should be a searchbox. there are even check boxes for searching multiple files, case insensitivity and the use of regex if you feel ambitious.

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