当内容可拖动时,HTML中的ondragenter事件属性起作用。通过将可拖动属性值设置为true来制作元素。 draggable属性只能采用true或false值。
用法:
<element ondragenter = "script">
属性值:此属性包含单值脚本,该脚本在调用ondragenter事件属性时起作用。
范例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML ondragenter Event Attribute
</title>
<!-- script to add background color -->
<script>
function MyFunction() {
document.getElementById("geeks").style.backgroundColor
= "green";
}
</script>
</head>
<body id = "geeks" style = "text-align:center">
<!-- ondragenter event call here -->
<h1 ondragenter = "MyFunction()" draggable = "true">
GeeksforGeeks
</h1>
<p>Drag heading content to change background color</p>
</body>
</html>
输出:
拖动内容之前:
拖动内容后:
范例2:
<!DOCTYPE html>
<html>
<head>
<title>
HTML ondragenter Event Attribute
</title>
<script>
function dragenter_time() {
document.getElementById("geeks").innerHTML
= "The date and time is:" + Date();
}
</script>
</head>
<body>
<center>
<!-- ondragenter event call here -->
<p id = "geeks" ondragenter="dragenter_time()"
draggable = "true">Drag to know time
</p>
</center>
</body>
</html>
输出:
拖动内容之前:
拖动内容后:
支持的浏览器:下面列出了ondragenter事件属性支持的浏览器:
- 谷歌浏览器4.0
- Internet Explorer 9.0
- Firefox 3.5
- Safari 6.0
- Opera 12.0
相关用法
- HTML ondragenter事件用法及代码示例
- HTML oninvalid用法及代码示例
- HTML onsubmit用法及代码示例
- HTML onunload用法及代码示例
- HTML onkeyup用法及代码示例
- HTML ondrop用法及代码示例
- HTML onpageshow用法及代码示例
- HTML onsearch用法及代码示例
- HTML onhashchange用法及代码示例
- HTML onerror用法及代码示例
- HTML onbeforeunload用法及代码示例
- HTML onbeforeprint用法及代码示例
- HTML onafterprint用法及代码示例
- HTML onchange用法及代码示例
- HTML oninput用法及代码示例
- HTML ondblclick用法及代码示例
- HTML onload用法及代码示例
- HTML onmousemove用法及代码示例
- HTML onmouseup用法及代码示例
- HTML onwheel用法及代码示例
- HTML oncontextmenu用法及代码示例
- HTML onpaste用法及代码示例
- HTML onfocus用法及代码示例
- HTML onmouseover用法及代码示例
注:本文由纯净天空筛选整理自roshalmoraes大神的英文原创作品 HTML | ondragenter Event Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。