简体   繁体   中英

Can Not set BreakPoint in Firebug

I cannot set BreakPoint in Firebug script window in Chrome...

http://postimg.org/image/ivm2jss0d/

Similar Link : How can I set breakpoints in an external JS script in Firebug

Can Firebug set breakpoints in external JavaScript files?

they suggest :

1.Click on the 'all' drop down in the upper left hand corner above the script code content window.
2.Select 'Show Static Scripts'.

I cannot find these options .. I can see only 1 drop down which has my script .

Another Suggestion.. Use debugger ;

Not working in my case

Please Suggest

Have you tried this

$('#button, #paragraph').click(function () {
debugger;
$(this).attr('value', 'Please wait');
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM