event.result

event.result返回类型:Object

描述:由此事件触发的一个事件处理函数返回的最后的值,除非值是undefined

  • 增补版本:1.3event.result

此属性对取回先前的自定义事件的返回值很有用。

示例:

显示先前的处理函数的返回值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>event.result demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button>display event.result</button>
<p></p>
<script>
$( "button" ).click(function( event ) {
return "hey";
});
$( "button" ).click(function( event ) {
$( "p" ).html( event.result );
});
</script>
</body>
</html>

演示: