如何在html中输出js文件中的变量。
我写了一个js文件。在html中用<script src="sample.js"></script>执行了。
但是我想在同一个html文件的其他位置中,调用sample.js中的一个全局变量。请问该如何操作啊?
------解决方案--------------------
sample.js 中
var type = 1;
HTML中
function xxx(){
var type2 = type;
}
------解决方案--------------------
<script src="sample.js"></script>
假如:sample.js里面有个变量var content = "这是全局变量";
Html的其他位置script块里都可以用
<body>
<script>
alert(content);
</script>
</body>