result

このエントリーをはてなブックマークに追加

event.resultは最後のイベントハンドラーで返された値が格納されたプロパティです。

何も格納されていない場合は”undefined”を返します。

$( "button" ).click(function( event ) {
  return "hey";
});
$( "button" ).click(function( event ) {
  $( "p" ).html( event.result );
});

sample

この場合、直前のイベントハンドラで返された「hey」という値をevent.resultで取得できます。

jQuery 1.3.0での追加/変更

event.resultはjQuery 1.3で追加されたプロパティです。

参考URL

event.result | jQuery API Documentation

登録日 : 2014年01月12日 最終更新日 : 2014年1月12日

同じカテゴリー(Event Object)のエントリー

検索

スポンサードリンク

バージョン

リファレンス