比方说这个网站 https://angularjs.org/怎么样屏蔽里面所有可点击跳转链接的按钮呢?
https://angularjs.org/
在console 里面运行以下代码即可
document.querySelectorAll('a').forEach(a => {a.onclick=(e) => {e.preventDefault()}})
1.4m articles
1.4m replys
5 comments
57.0k users