W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
該ondblclick屬性返回當前元素的onDblClick事件處理程序代碼。
element.ondblclick = function;
element.ondblclick = function() { console.log("ondblclick event detected!"); };
<html>
<head>
<title>ondblclick event example</title>
<script type="text/javascript">
function initElement()
{
var p = document.getElementById("foo");
// NOTE: log(); or log(param); will NOT work here.
// Must be a reference to a function name, not a function call.
p.ondblclick = log;
};
function log()
{
console.log("ondblclick Event detected!")
}
</script>
<style type="text/css">
<!--
#foo {
border: solid blue 2px;
}
-->
</style>
</head>
<body onload="initElement()">
<span id="foo">My Event Element</span>
<p>double-click on the above element.</p>
</body>
</html>
當用戶雙擊一個元素時引發(fā)dblclick事件。
規(guī)范 | 狀態(tài) | 注釋 |
---|---|---|
HTML Living Standard 該規(guī)范中'ondblclick'的定義。 | Living Standard |
我們正在將兼容性數(shù)據(jù)轉(zhuǎn)換為機器可讀的JSON格式。
特征 | Chrome | Edge | Firefox(Gecko) | Internet Explorer | Opera | Safari(WebKit) |
---|---|---|---|---|---|---|
基本支持 | 支持 | 支持 | ? | ? | ? | ? |
特征 | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | Edge | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
基本支持 | 不支持 | 不支持 | ? | ? | ? | ? | ? | ? | 不支持 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: