ChatGPT解决这个技术问题 Extra ChatGPT

How do you launch the JavaScript debugger in Google Chrome?

When using Google Chrome, I want to debug some JavaScript code. How can I do that?


P
Peter Mortensen

Try adding this to your source:

debugger;

It works in most, if not all browsers. Just place it somewhere in your code, and it will act like a breakpoint.


It's hard to find what this command is called if you've forgotten it!
It's also tough to google for reasons why this doesn't always work. Are there limitations on this?
You need to have Chrome Developer Tools open for this to work (hit F12 on Windwos/Linux, don't know the key on a Mac, or just inspect an element). If you have Developer Tools open, an extra bit of awesomeness is that you can click and hold the Refresh button to clear the cache.
@CallumRogers Only if your users use your site with the Developer Tools open, though.
@JoshM. Please note that leaving this in Production code is very bad as it causes issues in certain versions of IE even for users who don't have dev tools open.
m
mplungjan

Windows: CTRL-SHIFT-J OR F12

Mac: ⌥-⌘-J

Also available through the wrench menu (Tools > JavaScript Console):

https://i.stack.imgur.com/Ktv4E.png


I think the shortcut has since changed to CTRL-SHIFT-J.
or Cmd-Shift-J for Macs. God I love this <kbd> tag. Too bad I can't use it in comments.
The Mac shortcut seems to actually be Alt-Cmd-J on the latest Chrome build.
looking at this question makes me understand how much my javascript skills improved from novice levels to quite decent standards
P
Pang

Windows and Linux:

Ctrl + Shift + I keys to open Developer Tools

Ctrl + Shift + J to open Developer Tools and bring focus to the Console.

Ctrl + Shift + C to toggle Inspect Element mode.

Mac:

⌥ + ⌘ + I keys to open Developer Tools

⌥ + ⌘ + J to open Developer Tools and bring focus to the Console.

⌥ + ⌘ + C to toggle Inspect Element mode.

Source

Other shortcuts


On mac, the shorcut to toggle inspect element mode is shift ⌘ C (Shift - Command - C)
P
Peter Mortensen

Press the F12 function key in the Chrome browser to launch the JavaScript debugger and then click "Scripts".

Choose the JavaScript file on top and place the breakpoint to the debugger for the JavaScript code.


F12 does not seem to open the debugger on my Windows 7 system with Chrome 23.0.1246.0 dev-m.
+1 for F12, it also works for IE, FF, Edge. No need to learn Emacs like key combinations. Except for Mac.
P
Peter Mortensen

Ctrl + Shift + J opens Developer Tools.


P
Peter Mortensen

In Chrome 8.0.552 on a Mac, you can find this under menu View/Developer/JavaScript Console ... or you can use Alt+CMD+J.


P
Pang

Here, you can find the shortcuts to access the developer tools.

https://developer.chrome.com/devtools/docs/shortcuts


P
Peter Mortensen

Shift + Control + I opens the Developer tool window. From bottom-left second image (that looks like the following) will open/hide the console for you:

https://i.stack.imgur.com/ZQ4AG.png


V
Venkat

To open the dedicated ‘Console’ panel, either:

Use the keyboard shortcuts On Windows and Linux: Ctrl + Shift + J On Mac: Cmd + Option + J

On Windows and Linux: Ctrl + Shift + J

On Mac: Cmd + Option + J

Select the Chrome Menu icon, menu -> More Tools -> JavaScript Console. Or if the Chrome Developer Tools are already open, press the ‘Console’ tab.

Please refer here


s
stackinfostack

Now google chrome has introduce new feature. By Using this feature You can edit you code in chrome browse. (Permanent change on code location)

For that Press F12 --> Source Tab -- (right side) --> File System - in that please select your location of code. and then chrome browser will ask you permission and after that code will be sink with green color. and you can modify your code and it will also reflect on you code location (It means it will Permanent change)

Thanks


P
Pang

For Mac users, go to Google Chrome --> menu View --> Developer --> JavaScript Console.

https://i.stack.imgur.com/6pidj.png


E
Eric Aya

The most efficient way I have found to get to the javascript debugger is by running this:

chrome://inspect


O
OG Sean

F12 opens the developer panel

CTRL + SHIFT + C Will open the hover-to-inspect tool where it highlights elements as you hover and you can click to show it in the elements tab.

CTRL + SHIFT + I Opens the developer panel with console tab

RIGHT-CLICK > Inspect Right click any element, and click "inspect" to select it in the Elements tab of the Developer panel.

ESC If you right-click and inspect element or similar and end up in the "Elements" tab looking at the DOM, you can press ESC to toggle the console up and down, which can be a nice way to use both.


J
Johan Stiven Hernandez Osorio

These are the tools you see

Press the F12

https://i.stack.imgur.com/g4ZKf.png


P
Peter Mortensen

From the console in Chrome, you can do console.log(data_to_be_displayed).


This will not open the console. This will only log to the console.