画像のサムネイルが上のセクションでクリックされた後、別のセクションに画像が表示されるようにしています。
索引コード:
<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 に表示させたい