Hunter的大杂烩 技术学习笔记

2018-05-24

Chrome调试js技巧

Filed under: 技术话题 — hunter @ 7:46 pm

为了方便调试第三方页面,有时希望可以在调试过程中,加载上自己的js工具库,具体做法:

在页面脚本中增加断点,运行至断点后,在控制台中输入:

var script=document.createElement(“script”);script.src=”https://yourdomain/yourhijack.js”;document.getElementsByTagName(‘body’)[0].appendChild(script);

再点击继续运行,这样浏览器就把自己的工具库加载进去了。

调试时,可以在控制台命令行上直接运行自己定义的函数

No Comments

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.

Powered by WordPress