Chinaunix首页 | 论坛 | 博客
  • 博客访问: 746242
  • 博文数量: 176
  • 博客积分: 2548
  • 博客等级: 少校
  • 技术积分: 1749
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-29 16:36
个人简介

爱咋咋地

文章分类

全部博文(176)

文章存档

2024年(1)

2023年(17)

2022年(19)

2021年(3)

2020年(1)

2018年(1)

2017年(1)

2014年(1)

2013年(4)

2012年(11)

2011年(19)

2010年(22)

2009年(71)

2008年(5)

分类: LINUX

2022-04-20 16:46:22

ROMANIA_engineerfutzlarson提出了一个问题:Find JavaScript function definition in Chrome,或许与您遇到的问题类似。


回答者Colinplesiv给出了该问题的处理方式:


Lets say we're looking for function named foo:


(open Chrome dev-tools),
  1. Windows: ctrl + shift + F, or macOS: cmd + optn + F. This opens a window for searching across all scripts.
  2. check "Regular expression" checkbox,
  3. search for foo\s*=\s*function (searches for foo = function with any number of spaces between those three tokens),
  4. press on a returned result.
  5. Another variant for function definition is function\s*foo\s*\( for function foo( with any number of spaces between those three tokens.
阅读(364) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~