Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当页面加载并且 Javascript 启动时,我需要开始调试 JavaScript。(OnLoad 事件调用),但我没有访问网站的源代码,也无法修改它(如调试;命令)。请帮助它最好的问候弗拉德
为什么不使用一些网络浏览器工具?就像 Mozilla 上的 Firebug 或 Chrome 中的开发者工具(只需在 Chrome 浏览器中单击 F12,选择 Sources 选项卡,然后选择所需的 .js 文件。)
我猜 onload 事件会被类似的东西触发
<body onload="load()">
所以在 load() 方法上设置一个断点。