在上面的部分中单击图像的缩略图后,我希望在单独的部分中显示图像。
索引代码:
<section id="select-image">
<h2>Step 1. Select an image</h2>
<p>Select your prefered image</p>
<div id="ug-images"><img src="/images/ugimage1.jpg"></div>
</section>
<section id="add-text">
<h2>Step 2. Add Text</h2>
<input id="text" type="text" value="Customise me!">
</section>
<section id="style-image">
<h2>Step 3. Style it!</h2>
<div id="workspace">
javascript代码:
$(document).on('click', '#ug-images', function() {
var url = $(this).data('url');
$("#workspace img").remove();
var img = $("<img>").attr('src', url);
$("#workspace").append(img);
});
要清楚。我希望在 id=Select-image 中选择的缩略图出现在 id=workspace