Jqueryでドロップ可能なオブジェクトのIDに従って画像srcの一部を変更する方法に少しこだわっています。
私はこれと、残念ながらうまくいかなかったWebからの他のいくつかのアイデアを試しました。私がそう言わなければならないなら、これはかなりトリッキーです。
ui.draggable['<img src= "images/kitchen/.img src" width="800" height="600"/>'].id
現時点では、画像を取得できるのは1回だけです。
imgsrcを実行するために何らかの関数を実行することになっていると思います。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Droppable - Revert draggable position</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<style>
#draggable, #draggable1 { width: 100px; height: 100px; padding: 0; float: left; margin: 10px 10px 10px 0; }
#droppable { width: 800px; height: 600px; padding: 0; float: left; margin: 10px; }
</style>
<script>
$(function() {
$( "#draggable" ).draggable({ revert: "valid" });
$( "#draggable1" ).draggable({ revert: "valid" });
$( "#droppable" ).droppable({
activeClass: "ui-state-hover",
hoverClass: "ui-state-active",
drop: function( event, ui ) {
$( this )
.addClass( "ui-state-highlight" )
.find( "div" )
.html('<img src= "http://blakeloizides.co.za/sm/images/preview-images/kitchen/medium-cream-kitchen-preview.jpg" width="800" height="600"/>' + "Dropped! " + ui.draggable[0].id);
}
});
});
</script>
</head>
<body>
<div id="draggable" class="ui-widget-content">
<img src="http://blakeloizides.co.za/sm/images/gallery/img12.png" width="100" height="100">
</div>
<div id="draggable1" class="ui-widget-content">
<img src="http://blakeloizides.co.za/sm/images/gallery/img1.png" width="100" height="100">
</div>
<div id="droppable" class="ui-widget-header">
<div><img src="images/kitchen/kitchen-preview-cad.jpg" width="800" height="600"></div>
</div>
</body>
</html>