Finding Javascript-Applied Inline Styles to Debug Javascript

后端 未结 1 1913
长情又很酷
长情又很酷 2021-01-11 10:26

SCENARIO: I am taking over management of a website where the former web developer has unfortunately spread out many relevant functions over many long JS fil

1条回答
  •  时光说笑
    2021-01-11 10:58

    A possible way is to add a DOM breakpoint in Chrome Dev Tools

    enter image description here

    For that to work, you have to add the breakpoint before the style is added. That can be tricky, but you can force a breakpoint before loading any JavaScript by adding the following immediately after the HTML element in question

    
    

    Try it on the following code

    • Click on the "Run Code Snippet" button below
    • Open Dev Tools
    • Right click the paragraph
    • Select Break On... -> Attribute modifications
    • Click the "Add border color" button
    • Voila, your debugger stops at the code that is modifying the style

    window.onload = function() {
        document.querySelector('button').addEventListener('click', function() {
             document.querySelector('p').style.border = '2px solid red';    
        });
    }

    Sample Paragraph

    0 讨论(0)
提交回复
热议问题