我可以拥有这样的东西吗?
<script src="path-not-found.js">
//if file path is incorrect, then do scripting here
//for eg.
console.log('path not found');
</script>
答案 0 :(得分:1)
不。你不能。
如果src属性可用,则忽略脚本的内容。
这意味着,即使src路径不正确,它也会忽略它的内容,因为它只检查src属性,如果它在那里,脚本标记内的内容将被忽略。
您需要使用两个单独的<script>
标记并在那里进行编码:
第一个用src表示外部文件,第二个用src表示没有src,但是带代码, 这将在该文件之后执行。