返回最后一次 click 事件的值:
$("button").click(function(){ return "Hello world!";});$("button").click(function(event){ $("p").html(event.result); });
event.result 属性包含由被指定事件触发的事件处理程序返回的最后一个值。
event.result