最終更新:2015-01-14 (水) 06:11:52 (3384d)  

jQuery.bind
Top / jQuery.bind

bindはその時点でjQueryオブジェクトに存在している要素のみが対象

.bind() creates a 1:1 association between element and handler

http://api.jquery.com/bind/

  $( "#foo" ).bind( "click", function( event ) {
    alert( "The mouse cursor is at (" +
      event.pageX + ", " + event.pageY +
      ")" );
  });

関連