私はこのコードを持っています:
function drop(evt) {
evt.stopPropagation();
evt.preventDefault();
var imageUrl = evt.dataTransfer.getData('URL');
alert(imageUrl);
}
<img>
要素をドロップすると、画像のURLが通知されます。ここまでは順調ですね。
私の問題は、<a>
要素をドロップすると、<a>
要素のhref
のURLを警告することです。上記の例で画像をドロップした場合のように、<img>
内の<a>
要素のURLに警告します。
それは可能ですか?
私はJqueryや他のライブラリを使用してもかまいません。 <a>
要素内の画像のURLを取得したいだけです。
重要なのは、他のWebサイトから画像リンクをマイニングして画像のURLを取得することです。
私が達成しようとしていることをより明確にするために、この投稿のすぐ下にプロフィール画像をドラッグして、フィドルにドロップしてみてください。 http://stackoverflow.com/users/3074592/laaposto
に警告します。 http://i.stack.imgur.com/juvdV.jpg?s=32&g=1
にアラートを送信します。
ChromeおよびFirefoxの最新バージョンでソリューションが機能するようにしたい。
JQueryの使用。 (私は「src」属性を取得するためにそれを使用しているので、それなしで実行できると思います)
私は交換しました:
var imageUrl = evt.dataTransfer.getData('URL');
と:
var imageUrl = evt.dataTransfer.getData('text/html');
ああ、そして私はアラートをconsole.logに置き換えますので、それを開く必要があります。
これが私のやり方です(Firefoxでのみテストされています):
新しいdrop(event)関数の重要な部分は次のとおりです。
// Get text/html instead of text/uri-list!
// So you get raw html that is passed even between different websites
var droppedHTML = evt.dataTransfer.getData("text/html");
// add this html to some container.
// if you skip this, the following code won't work if a single img element is dropped
var dropContext = $('<div>').append(droppedHTML);
// now you can read the img-url (not link-url!!) like this:
var imgURL = $(dropContext).find("img").attr('src');
function drop(evt) {
evt.stopPropagation();
evt.preventDefault();
var imageUrl = evt.dataTransfer.getData('text/html');
var rex = /src="?([^"\s]+)"?\s*/;
var url, res;
url = rex.exec(imageUrl);
alert(url[1]);
}
ChromeおよびFirefoxで機能しますが、ChromeからFirefoxに画像をドラッグした場合は機能しません。
<body>
<!--the mouse over and dragging class are defined on each item-->
<div id="root" style="margin:20px 0 0 10px;">
<div id="handle" style="float:left;margin:2px 0 0 10px; padding:5px; background-color:#FFCC00;">Drage Folder</div>
<div id="drop" style="float:left;margin:2px 0 0 110px; padding:5px; background-color:#CCCC00;">Drop Folder</div>
</div>
<img id="example" src="fold.jpg" style="position: relative" />
<script type="text/javascript">
Drag.init(document.getElementById("example"));
</script>
Drag-drop.jsファイルを作成し、次のコードを追加します。
var Drag = {
obj : null,
init : function(o, oRoot, minX, maxX, minY, maxY, bSwapHorzRef, bSwapVertRef, fXMapper, fYMapper)
{
o.onmousedown = Drag.start;
o.hmode = bSwapHorzRef ? false : true ;
o.vmode = bSwapVertRef ? false : true ;
o.root = oRoot && oRoot != null ? oRoot : o ;
if (o.hmode && isNaN(parseInt(o.root.style.left ))) o.root.style.left = "0px";
if (o.vmode && isNaN(parseInt(o.root.style.top ))) o.root.style.top = "0px";
if (!o.hmode && isNaN(parseInt(o.root.style.right ))) o.root.style.right = "0px";
if (!o.vmode && isNaN(parseInt(o.root.style.bottom))) o.root.style.bottom = "0px";
o.minX = typeof minX != 'undefined' ? minX : null;
o.minY = typeof minY != 'undefined' ? minY : null;
o.maxX = typeof maxX != 'undefined' ? maxX : null;
o.maxY = typeof maxY != 'undefined' ? maxY : null;
o.xMapper = fXMapper ? fXMapper : null;
o.yMapper = fYMapper ? fYMapper : null;
o.root.onDragStart = new Function();
o.root.onDragEnd = new Function();
o.root.onDrag = new Function();
},
start : function(e)
{
var o = Drag.obj = this;
e = Drag.fixE(e);
var y = parseInt(o.vmode ? o.root.style.top : o.root.style.bottom);
var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right );
o.root.onDragStart(x, y);
o.lastMouseX = e.clientX;
o.lastMouseY = e.clientY;
if (o.hmode) {
if (o.minX != null) o.minMouseX = e.clientX - x + o.minX;
if (o.maxX != null) o.maxMouseX = o.minMouseX + o.maxX - o.minX;
} else {
if (o.minX != null) o.maxMouseX = -o.minX + e.clientX + x;
if (o.maxX != null) o.minMouseX = -o.maxX + e.clientX + x;
}
if (o.vmode) {
if (o.minY != null) o.minMouseY = e.clientY - y + o.minY;
if (o.maxY != null) o.maxMouseY = o.minMouseY + o.maxY - o.minY;
} else {
if (o.minY != null) o.maxMouseY = -o.minY + e.clientY + y;
if (o.maxY != null) o.minMouseY = -o.maxY + e.clientY + y;
}
document.onmousemove = Drag.drag;
document.onmouseup = Drag.end;
return false;
},
drag : function(e)
{
e = Drag.fixE(e);
var o = Drag.obj;
var ey = e.clientY;
var ex = e.clientX;
var y = parseInt(o.vmode ? o.root.style.top : o.root.style.bottom);
var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right );
var nx, ny;
if (o.minX != null) ex = o.hmode ? Math.max(ex, o.minMouseX) : Math.min(ex, o.maxMouseX);
if (o.maxX != null) ex = o.hmode ? Math.min(ex, o.maxMouseX) : Math.max(ex, o.minMouseX);
if (o.minY != null) ey = o.vmode ? Math.max(ey, o.minMouseY) : Math.min(ey, o.maxMouseY);
if (o.maxY != null) ey = o.vmode ? Math.min(ey, o.maxMouseY) : Math.max(ey, o.minMouseY);
nx = x + ((ex - o.lastMouseX) * (o.hmode ? 1 : -1));
ny = y + ((ey - o.lastMouseY) * (o.vmode ? 1 : -1));
if (o.xMapper) nx = o.xMapper(y)
else if (o.yMapper) ny = o.yMapper(x)
Drag.obj.root.style[o.hmode ? "left" : "right"] = nx + "px";
Drag.obj.root.style[o.vmode ? "top" : "bottom"] = ny + "px";
Drag.obj.lastMouseX = ex;
Drag.obj.lastMouseY = ey;
Drag.obj.root.onDrag(nx, ny);
return false;
},
end : function()
{
document.onmousemove = null;
document.onmouseup = null;
Drag.obj.root.onDragEnd( parseInt(Drag.obj.root.style[Drag.obj.hmode ? "left" : "right"]),
parseInt(Drag.obj.root.style[Drag.obj.vmode ? "top" : "bottom"]));
Drag.obj = null;
},
fixE : function(e)
{
if (typeof e == 'undefined') e = window.event;
if (typeof e.layerX == 'undefined') e.layerX = e.offsetX;
if (typeof e.layerY == 'undefined') e.layerY = e.offsetY;
return e;
}
};
これが私のフィドルです: http://fiddle.jshell.net/ep2z5/
これはchrome=)で機能します。基本的に、返されたhtmlを取得してjqueryオブジェクトに変換します。返された文字列はメタタグとimgタグなので、 2番目の要素(jquery解析によって返された配列の番号1)とその項目をjquery-ifyし、src属性を取得します。
Update:Firefoxをチェックしましたが、Firefoxが機能していません。現在調査中です。
更新:わかりましたchromeとfirefoxの両方でテストされた最新のフィドルです http:// fiddle.jshell.net/ep2z5/6/
再帰を使用しますが、これは危険な場合がありますが、ネストされた要素が多くない限り、問題なく動作すると思います。
@Frederikeの回答に少し修正を加えました。
function drop(evt) {
evt.stopPropagation();
evt.preventDefault();
var droppedObject = $('<div>').html(evt.dataTransfer.getData("text/html"));
var image = droppedObject.find("img");
if(image != undefined && image.length > 0){
console.log(image);
var imageUrl = image.attr('src');
if(imageUrl != undefined)
console.log(imageUrl);
} else {
console.log("image undefined");
}
}
JSFiddleの例: https://jsfiddle.net/0joker01/xdL6gqk0/
この問題は、JavaScriptのみを使用して解決できます。
Piece of Code:
// onDrop
function onDrop(evt) {
evt.stopPropagation();
evt.preventDefault();
var imageUrl = evt.dataTransfer.getData("URL");
var links = getAllElementsWith("a", "href", imageUrl);
var image;
// console.log(links, evt);
if(links.length){
image = links[0].getElementsByTagName("img");
if(image.length)
imageUrl = image[0].getAttribute("src");
else
imageUrl = "#no-image";
}
alert(imageUrl);
};
JSFiddle Here: http://jsfiddle.net/hayatbiralem/7pr7N/5/
getAllElementsWithAttribute 関数の kevinfahy に感謝します。