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


jQuery event.result用法及代码示例


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

用法:

event.result

参数:它不接受任何参数,因为它是属性而不是函数。

示例 1:jQuery 代码显示 event.result 属性的工作原理。

HTML


<!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:在此示例中,弹出窗口将显示事件处理程序返回的最后一个值。

HTML


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

输出:



相关用法


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