例
回到前面的单击事件的价值:
$("button").click(function(){
return "Hello world!";
});
$("button").click(function(event){
$("p").html(event.result);
});
试一试» 定义和用法
该event.result属性包含由指定的事件触发的事件处理程序返回的最后一个/前值。
句法
event.result
参数 | 描述 |
---|---|
event | 需要。 该event的参数来自事件绑定功能 |