Debugging skills for chrome developer Tool

Source: Internet
Author: User
Tags chrome developer chrome developer tools

This articleArticleIt is based on the current chrome stable version (19.0.20.4.52 m), because Google is constantly improving the chrome developer tool, so the chrome version may be slightly different. some shortcut keys are also on windows, and the Mac should be similar.

The conventional breakpoint-related breakpoint/conditional-breakpoint/call-stack/watch-expressions will not be involved.

1. beauw.javascript

JavaScript files are usually compressed before they are released. The compressed Javascript is almost unreadable and almost no breakpoint can be set. there is a pretty print button (this symbol {}) under the scripts panel. Clicking it will format the compressed JS file and indent the file. At this time, the readability of the breakpoint is greatly improved.

2. view events bound to the element

On the elements panel, select an element and generate event related to this element according to the type under the event listeners on the right, that is, the events that will pass through this node in the event capture and bubble phase. in the drop-down button on the Right of event listeners, you can select selected node only to list events on this node. After the event is expanded, the file in which the event is bound is displayed, click the file name to directly jump to the row where the binding event handler is located. if Javascript is compressed, You can first pretty print and then view the Bound event.

3. Ajax interruption

There is an xhr breakpoints on the right side of the scripts panel, and an xhr breakpoint will be added to the + on the right of the vertex. the breakpoint is interrupted Based on the xhr URL match. If no matching rule is written, this match is only a simple string search. It is interrupted before sending, And the Ajax request initiated in the place where it is viewed in the call stack after being interrupted.

4. Page event interruption

In addition to setting a regular breakpoint, you can also interrupt a specific event (not targeting elements). On the right side of the scripts panel, there is an event listener breakpoints, all supported events are listed here, including not only click and keyup events, but also timer (interrupted when setTimeout setinterval processing function starts execution), onload, scroll and other events.

5. Javascript exception interruption

The button on the left side of pretty print is to enable the interrupt switch when JS throws an exception. There are two modes: interrupt at all exceptions and interrupt at uncaptured exceptions. after the exception is interrupted, you can check why an exception is thrown.

6. Dom Level 3 event interruption

On the elements panel, right-click an element and choose break on subtree modifications and break on attributes modifications. These two correspond to domsubtreemodified in Dom Level 3 event, the domsubtreemodified event will list all event interruptions of level3 at Dom breakpoints on the scripts panel.

7. Search for all JS files

When chrome developer tool is opened, press Ctrl + Shift + F to search for it through the JS hook.CodeLocation is useful. Regular Expressions are supported for searching.

8. Command Line API
    • $ (Id_selector) is irrelevant to jquery on the page.
    • $ (Css_selector)
    • $0, $1, $2, $3, $4
      1. The last five elements selected in the elements panel are $0.
      2. These five variables are first-in-first-out.
    • Copy (STR) Copies STR to the clipboard, which is useful when copying a variable at the breakpoint
    • Monitorevents (object [, Types])/unmonitorevents (object [, Types])
      1. When a types event occurs on an object, the event object is output on the console.
    • For more console APIs, please console. Log (console) or click
    • More command line API clicks

9. Modify JS Code in real time to take effect
    • The JS file outside the page can be directly modified in the scripts panel. After modification, press Ctrl + S to save the file, and the file will take effect immediately.
    • Note:
      1. JS modifications on HTML pages are not supported after testing.
      2. The script formatted with pretty print does not support modification.
10. resumable code executed on the console

Enter // @ sourceurl = filename. js in the last line of the Code in the console. A file named filename. js will be included in the scripts panel, and then it will be the same as the external JS file.

 
Function Hello () {alert ('say Hi');} // @ sourceurl = Hello. js
Reference
    • Chrome developer tool Doc
    • A re-introduction to the chrome Developer Tools

Blog Source: http://ued.taobao.com/blog/2012/06/03/debug-with-chrome-dev-tool/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.