XML DOM cancelable 事件属性
XML基础 2023-08-13 19:16:48小码哥的IT人生shichen
XML DOM cancelable 事件属性
定义和用法
cancelable 事件返回一个布尔值。如果用 preventDefault() 方法可以取消与事件关联的默认动作,则为 true,否则为 fasle。
语法
event.cancelable
实例
下面的例子讲检测发生的事件是否是一个 cancelable 事件:
<html>
<head>
<script type="text/javascript">
function isEventCancelable(event)
{
alert(event.cancelable
);
}
</script>
</head>
<body onmousedown="isEventCancelable(event)">
<p>Click somewhere in the document.
An alert box will tell if the
event is a cancelable event.</p>
</body>
</html>
TIY
完整实例【cancelable event】:
<html>
<head>
<script type="text/javascript">
function isEventCancelable(event)
{
alert(event.cancelable);
}
</script>
</head>
<body onmousedown="isEventCancelable(event)">
<p>Click somewhere in the document. An alert box will tell if the event is a cancelable event.</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
检测事件是否是 cancelable 事件(IE 浏览器不支持)。