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


HTML cancelable Event用法及代码示例


cancelable event属性用于返回一个布尔值,该值指示事件是否为可取消事件。如果可以阻止该事件的默认操作,则该事件是可取消的事件。

返回值:
如果事件是可取消的,则cancelable event属性返回true,否则返回false。

用法:


event.cancelable

以下示例程序旨在说明cancelable事件属性:

例:查找特定事件是否可取消。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>cancelable Event Property in HTML</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>cancelable Event Property</h2> 
  
    <p>To check if the onclick event is  
       a cancelable event or not,  
       double click the "Check Event" button . 
    </p> 
  
    <button ondblclick="MyEvent(event)"> 
        Check Event 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function MyEvent(event) { 
            <!-- Check whether the "event" is cancelable or not. -->
            var gfg = event.cancelable; 
  
            document.getElementById("test").innerHTML = gfg; 
        } 
    </script> 
  
</body> 
  
</html>       

输出:

在单击按钮之前:

双击按钮后(请注意,按钮下方有文本“true”):

支持的浏览器:

  • Opera
  • IE浏览器
  • 谷歌浏览器
  • Firefox
  • 苹果Safari


相关用法


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