本文介绍了带有src的脚本标记和脚本标记之间的代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下是有效的javascript吗?该变量是否可用于外部调用的脚本?
Is the following valid javascript? Would the variable be available to the externally called script?
<script src="//blah">
var something = "";
</script>
背景:我已经看到这用于自动生成的分析代码(不是谷歌),它真的让我烦恼所以想知道我是否可以解决这个问题,或者这个变量是否会以某种方式被外部引用的脚本使用。
Background: I have seen this used in auto generated analytic code (not google) and it really annoys me so wanting to know if i can fix this or if this variable will somehow be used by the externally referenced script.
推荐答案
阅读本文,
这篇关于带有src的脚本标记和脚本标记之间的代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!