我正在通过 url 栏在我的浏览器 (chrome) 中执行此代码。
document.write('<script src=http://example.com/example.js></script>')
当它在页面上执行时,它会覆盖它并放置:<script src=http://example.com/example.js></script>
作为页面的源代码,然后启动 .js 脚本。我的问题是,是否可以在不使用少量代码覆盖整个页面的情况下启动该 .js 脚本?如果有怎么办?
我正在通过 url 栏在我的浏览器 (chrome) 中执行此代码。
document.write('<script src=http://example.com/example.js></script>')
当它在页面上执行时,它会覆盖它并放置:<script src=http://example.com/example.js></script>
作为页面的源代码,然后启动 .js 脚本。我的问题是,是否可以在不使用少量代码覆盖整个页面的情况下启动该 .js 脚本?如果有怎么办?