当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery event.result用法及代码示例


event.result是jQuery中的一个内置属性,用于查找由指定事件启动的事件处理程序返回的最后一个值和上一个值。
用法:

event.result

参数:它不接受任何参数,因为它是属性而不是函数。
返回值:它返回由指定事件开始的事件处理程序返回的最后一个值和上一个值。

jQuery代码显示event.result属性的工作方式:


<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>

输出:
在点击按钮之前-

点击按钮后,



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | event.result Property with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。