var myWindow;
$('#facebook').click(function(){
myWindow = window.open(this.href, "myWindowName", "width=800, height=600");
return false;
});
但現在當我嘗試:
myWindow.close();
我得到: VM156:2未捕獲的ReferenceError:我沒有定義(... )
爲什麼?如何解決這個問題呢?
錯誤消息說 「我」 沒有定義?與「myWindow」相比? – nnnnnn