pig's diary

何でも忘れるので万年初心者ね

2010-10-05から1日間の記事一覧

【謎】prototype。

ようやくprototypeの必要性と役割を学ぶところまで来た。でもまだまだ謎がいっぱい。 // **** prototypeなし、オブジェクトで呼び出し **** String.yeah = function(){ alert('yeah!!'); } String.yeah(); // yeah!! // **** prototypeなし、インスタンスで…

jQueryプラグインの作り方:テンプレート

なるほどね。で、jQueryオブジェクトをreturn してメソッドチェーンは続きますよ・・・と。 (function(jQuery) { function privateFunctionForPlugin(locale) { }; jQuery.fn.format = function(options) { var options = jQuery.extend({ format: "#,###.00…