画像をローカル ストレージに追加しようとしています。
これらすべての画像を保持したい div があります。次のような簡単なもの:
<div id="imageContainer">
<!--have images go here-->
</div>
私が達成しようとしているのは、次のようなものです。
if (Math.floor((Math.random()*3)+1) == 1) { // 1/3 chance of conditional being true
// append some image to #imageContainer and have it locally stored
} else {
alert('no luck this time...');
}
では、上記の条件が真になるたびに、どのように画像を追加し#imageContainer
てローカルに保存するのでしょうか?