14

I'm tired of re-typing the same commands into Chrome's developer console. Is it possible to load a script that I have saved on my local machine?

4

2 回答 2

17

如果您在 file:// URL 上运行开发人员工具,则可以执行以下操作:

s = document.createElement('script'); 
s.src = 'file://path/to/script.js'; 
document.body.appendChild(s);

作为一种解决方法,您还可以将经常重复的代码片段粘贴到开发人员工具中。

于 2011-05-19T05:50:42.833 回答
7

正如@PaulIrish 在评论中指出的那样,ChromeSnippets是他们对这个问题的解决方案。下面显示的屏幕截图是在撰写本文时在 Chrome 的开发人员工具中查找片段。要运行片段,请右键单击片段窗格中的条目,如左图所示,然后选择“运行”:

在此处输入图像描述

于 2017-10-27T23:41:16.800 回答