作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法查看页面上正在执行哪些功能?
如果我在页面上加载外部脚本,是否可以即时更改某个函数的作用或阻止它运行?
最佳答案
HTML5介绍 onbeforescriptexecute
事件,您可以使用它来动态检测新脚本,并在需要时阻止它们。
例如:
window.addEventListener('beforescriptexecute', function(e) {
// e.target.src is the URL of the external loaded script
// e.target.innerHTML is the content of the inline loaded script
if (e.target.src === urlToBlock)
e.preventDefault(); // Block script
}, true);
关于javascript - 有没有办法监视页面上运行的 javascript 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23943644/
我是一名优秀的程序员,十分优秀!