The Chrome debugger tells me that it found for example 42 occurrences of a given expression. 开发者_高级运维How on earth do I jump to the next occurrence?
You can use C+F to search in the chrome developer tools. Enter and C+g will go to the next match, and C+G will go to the previous one.
Note: On Mac, C == Command. On Windows/Linux, C == Ctrl.
While in the Search Box, hit Enter repeatedly to move to the next match
In windows at least :-
- Ctrl + G is Goto Line
Control + Shift + F opens a super search box with which you can find a string across all of the scripts. This can help when you have a lot of inline scripts for a page.
精彩评论