これと、前回紹介した[jQuery]関数を追加するで紹介した方法との違いがよくわからない。
一応、サンプルを作ってはみたもの。
<html> <head> <title>Jquery extendテスト</title> <script type="text/javascript" src="./jquery-1.4.2.min.js" ></script> </head> <body> <input type="button" value="Run" id="hoge" > <script type="text/javascript" >
jQuery.extend({ foo:function(){alert("hello jQuery");} });
$("#hoge").bind( 'click' , function(){ jQuery.foo(); } ); </script> </body> </html> |
jQuery.fn.fooとは違って、直接、jQueryに結びついているのが特徴なのかなーっと無理やりなっとくさせる。
0 コメント:
コメントを投稿