jQuery event.result属性
jQuery的event.result是一个内置的属性,用于查找由指定事件启动的事件处理程序返回的最后和之前的值。
语法:
event.result
参数:它不接受任何参数,因为它是一个属性而不是一个函数。
例子1:jQuery代码显示event.result属性的工作。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
<style>
div {
width: 40%;
height: 100px;
margin: 10px;
padding: 10px;
display: block;
border: 2px solid green;
}
</style>
</head>
<body>
<div>
<!-- click on this button -->
<button>Click here for event result</button>
<p></p>
</div>
<!-- jQuery code to show working of this property -->
<script>
("button").click(function (event) {
return "Geeks for Geeks !";
});
("button").click(function (event) {
$("p").html(event.result);
});
</script>
</body>
</html>
输出:
例子2:在这个例子中,一个弹出式窗口将显示由事件处理程序返回的最后一个值。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
</head>
<body>
<center>
<div>
<!-- click on this button -->
<button>Click here for event result</button>
</div>
<!-- jQuery code to show working of this property -->
<script>
("button").click(function (event) {
return "Geeks for Geeks !";
});
("button").click(function (event) {
alert(event.result);
});
</script>
</center>
</body>
</html>
输出: