0
我瞎搞的對象和方法,我有我使用來測試這個非常簡單的例子:Javascript外部對象全球?
var shout = {
hello: function(variable){
console.log("Hello " + variable);
}
};
shout.hello("World");
這工作得很好。但是,如果我把對象shout
在外部文件中,然後運行shout.hello("world");
我得到什麼:
//external file: test.js
var shout = {
hello: function(variable){
console.log("Hello " + variable);
}
};
<!-- my html document -->
<script src="test.js">
shout.hello("World");
</script>
我在做什麼錯?
我會接受這個答案的原因是第一次,它作品。 你能解釋一下這個原因嗎?編輯:嘿!我不知道這個 :) – 2015-02-09 21:44:33