此屬性用於指定元素是否可拖動。鏈接和圖像默認是可拖動的。 draggable屬性通常在拖放操作中使用。
用法:
<element draggable = "true|false|auto">
屬性值:該屬性包含以下列出的三個值:
- true:此值表示元素是可拖動的。
- false:此值表示該元素不可拖動。
- auto:此值代表默認瀏覽器的使用。
例:
<!DOCTYPE HTML>
<html>
<head>
<title>draggable attribute</title>
<style>
.dropbox {
width:350px;
height:70px;
padding:10px;
border:1px solid #aaaaaa;
}
h1 {
color:green;
}
</style>
<script>
function droppoint(event) {
var data = event.dataTransfer.getData("Text");
event.target.appendChild(document.getElementById(data));
event.preventDefault();
}
function allowDropOption(event) {
event.preventDefault();
}
function dragpoint(event) {
event.dataTransfer.setData("Text", event.target.id);
}
</script>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h2>draggable attribute</h2>
<div class = "dropbox" ondrop="droppoint(event)"
ondragover="allowDropOption(event)"></div>
<p id="drag1" draggable="true" ondragstart="dragpoint(event)">
GeeksforGeeks:A computer science portal for geeks</p>
</center>
</body>
</html>
輸出:
拖動之前:
拖放後
支持的瀏覽器:draggable屬性支持的瀏覽器如下:
- 穀歌瀏覽器4.0
- Internet Explorer 9.0
- Firefox 3.5
- Opera 12.0
- Safari 6.0
相關用法
- jQuery UI Dialog draggable用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML poster屬性用法及代碼示例
- HTML Class屬性用法及代碼示例
- HTML style屬性用法及代碼示例
- HTML oninvalid用法及代碼示例
- HTML <select> autocomplete屬性用法及代碼示例
- HTML <table> bgcolor屬性用法及代碼示例
- HTML onsubmit用法及代碼示例
- HTML onunload用法及代碼示例
- HTML srcdoc屬性用法及代碼示例
- HTML Marquee truespeed用法及代碼示例
- HTML onkeyup用法及代碼示例
- HTML ondrop用法及代碼示例
- HTML <td> abbr屬性用法及代碼示例
- HTML onpageshow用法及代碼示例
- HTML reversed屬性用法及代碼示例
- HTML readonly屬性用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 HTML | draggable Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。