HTML5のドラッグアンドドロップで機能するコードを見たことがありますが、ドラッグアンドコピーの例はありますか?要素をドロップ要素にドラッグしたいのですが、要素をこの場所にコピーするだけです。
2 に答える
ここに示す例に固執します: http://www.w3schools.com/html/html5_draganddrop.asp
次のドキュメントがあるとします。
<!DOCTYPE HTML>
<html>
<head>
<script>
<!-- script comes in the text below -->
</script>
</head>
<body>
<div id="div1" ondrop="drop(event)"
ondragover="allowDrop(event)"></div>
<img id="drag1" src="img_logo.gif" draggable="true"
ondragstart="drag(event)" width="336" height="69">
</body>
</html>
通常のドラッグ&ドロップ
通常のドラッグ アンド ドロップには、それぞれの要素に次のような機能が割り当てられています。
function allowDrop(ev) {
/* The default handling is to not allow dropping elements. */
/* Here we allow it by preventing the default behaviour. */
ev.preventDefault();
}
function drag(ev) {
/* Here is specified what should be dragged. */
/* This data will be dropped at the place where the mouse button is released */
/* Here, we want to drag the element itself, so we set it's ID. */
ev.dataTransfer.setData("text/html", ev.target.id);
}
function drop(ev) {
/* The default handling is not to process a drop action and hand it to the next
higher html element in your DOM. */
/* Here, we prevent the default behaviour in order to process the event within
this handler and to stop further propagation of the event. */
ev.preventDefault();
/* In the drag event, we set the *variable* (it is not a variable name but a
format, please check the reference!) "text/html", now we read it out */
var data=ev.dataTransfer.getData("text/html");
/* As we put the ID of the source element into this variable, we can now use
this ID to manipulate the dragged element as we wish. */
/* Let's just move it through the DOM and append it here */
ev.target.appendChild(document.getElementById(data));
}
ドラッグ&コピー
一方、drop 関数を変更して、DOM 要素を移動する代わりにコピーする必要があります。
/* other functions stay the same */
function drop(ev) {
ev.preventDefault();
var data=ev.dataTransfer.getData("text/html");
/* If you use DOM manipulation functions, their default behaviour it not to
copy but to alter and move elements. By appending a ".cloneNode(true)",
you will not move the original element, but create a copy. */
var nodeCopy = document.getElementById(data).cloneNode(true);
nodeCopy.id = "newId"; /* We cannot use the same ID */
ev.target.appendChild(nodeCopy);
}
このページを試してください: http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_draganddrop
そして、 に a を追加.cloneNode(true)
しgetElementById(data)
ます。
コピーと貼り付けを切り替える
ファイルマネージャーで次のようなことを行うこともできます: Ctrl-キーで移動からコピーに切り替えます:
function drop(ev) {
ev.preventDefault();
var data=ev.dataTransfer.getData("text/html");
/* Within a Mouse event you can even check the status of some Keyboard-Buttons
such as CTRL, ALT, SHIFT. */
if (ev.ctrlKey)
{
var nodeCopy = document.getElementById(data).cloneNode(true);
nodeCopy.id = "newId"; /* We cannot use the same ID */
ev.target.appendChild(nodeCopy);
}
else
ev.target.appendChild(document.getElementById(data));
}
JQuery を使用した例が必要な場合は、この jsFiddleを提供しました。基本的に、DOM オブジェクトの および イベントdrop
にdragover
バインドするだけで済みます。dropstart
その後、JQuery の組み込みclone()
メソッドを使用して要素を複製できます。
JQuery は独自のイベント ラッパーも返すためoriginalevent
、JQuery イベントから を取得する必要があります。
$('#x').bind('dragstart', function(e) {
e.originalEvent.dataTransfer.effectAllowed = 'copy';
e.originalEvent.dataTransfer.setData('Text', '#x');
});
$('#drop-box').bind('drop', function(e) {
e.preventDefault();
e.stopPropagation();
$(this).html($(e.originalEvent.dataTransfer.getData('Text')).clone());
return false;
}).bind('dragover', false);