我想知道是否可以通过 javascript 执行一个函数,我将编写一个函数将外部 JS 文件的内容写入 html 文件。
就像这样:
function insertInlineScript (path){
var readScriptFromPath (path){
return "<script>" + scriptContents + "</script>";
}
}
然后我把它插入我的页面
insertInlineScript("/path/to/file");
insertInlineScript("/path/to/file_2");
页面的输出将是
<script>
//contents of first file
</script>
<script>
//contents of 2nd file
</script>