• 締切済み

jQueryの$.メソッド()について

以下の記述について、ちょっと気になったので... $() → jQuery() ※同じ意味 $.メソッド → ???.メソッド ※「$.(ドルマーク+ドット)」と同じ意味がある記述し方 聞きたい事は$.(ドルマークドット)の記述と同じ意味の記述の仕方を教えて下さい。 なんて説明していいのかわからないけど... わかっていただけたでしょうか。 宜しくお願いします。

みんなの回答

回答No.1

function jQuery () {  alert ("abc"); } var $ = jQuery; $(); //-- var $ = {  target: document.body,  red: function () {   this.target.style.background = '#fdd';   return this;  },  blue: function () {   this.target.style.background = '#ddf';   return this;  },  alert (mess) {   alert (mess);   return this;  } }; $.red().alert("サンプル").blue();

Nanchatte_PG
質問者

お礼

回答していただきましたが... よくわかりませんでした、すみません。 ありがとうございました。