我有兩個JavaScript文件包含在我的網站標題。兩個文件都包含幾乎相同的變量變量範圍
如果我有標題這樣
<head>
<script src="http://127.0.0.1/js/file1.js" type="text/javascript"></script>
<script src="http://127.0.0.1/js/file2.js" type="text/javascript"></script>
</head>
是否有可能訪問從file2.js file1.js定義瓦爾?
這是我真的想
file1
$(function() {
var x = 1;
});
file2
$(function() {
console.log(x); //This dosen`t work. Can`t access var
});
'是否可以從file2.js中訪問file1.js中定義的變量?你能舉個例子嗎? – 2010-10-05 14:10:16
Duplicate:http://stackoverflow.com/questions/751882/html-javascript-include-file-variable-scope – Bertvan 2010-10-05 14:11:41