if(!sky.containers) sky.containers =
{
Window : function()
{
this.element = document.createElement("div");
this.element.modal = false;
this.element.height = 240;
this.element.draggable = true;
this.element.resizable = true;
this.element.position = "center";
this.element.width = 240;
this.element.target = document.body;
this.element.title ="";
this.element.headerHeight = 30;;
this.element.effects = {};
this.element.show = function()
return this.element;
}}
theresのは何の変数聖霊降臨祭にこの名前を定義していない場合、キーワードは?「sky.containers」または「ウィンドウ」は、この文脈では、これは何ですか?そして、ELEMENTは何ですか?JavascriptのキーワードTHISとELEMENT
console.log(this)またはalert(this)を実行して、 'this'の詳細を確認してください。 –
はこう言います:[オブジェクト、オブジェクト] – ozsenegal
アラートを使わないでください。特に、Chromeの場合はconsole.log、Firebugの場合はもっと冗長な出力を使用してください。アラートはそれほど有益ではありません。このコンテキストでは、F12 – Matt