これに HTML5 ストレージを使用する必要があるかどうかはわかりません。私の質問は、次のことをどのように達成できるかについてです。
額縁が空っぽの博物館の壁を考えてみてください。ユーザーに自分のコンピューターから画像をアップロードしてもらいたい。この画像は、壁のフレーム (div) に表示されます。ユーザーが別の画像を確認したい場合は、前の画像を「削除」して次の画像を表示することができます。
以下のフィドルは html5 ストレージの例ですが、複数の画像を保存します。別の画像がアップロードされたときに置き換えられる画像が 1 つだけ必要です。また、ページが更新されたときに保存する必要はありません。画像を表示して、それがどのように見えるかを確認するだけです。
JsFiddle (HTML5rocks)
結局、HTML5 ストレージについて教えていただけますか? それともjQueryでこれを行うことができますか?前もって感謝します!
コード
<style>
.thumb {
height: 75px;
border: 1px solid #000;
margin: 10px 5px 0 0;
}
</style>
<input type="file" id="files" name="files[]" multiple />
<output id="list"></output>
<script>
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
</script>