[新着] Webテンプレートを仮オープンしました
<a href="画像URL" onclick="return Sample (this); ">画像</a>
var SamplePage;
function Sample (imgURI) {
if (! SamplePage) open ('sample.html' /*, ....*/);
SamplePage.document.body.style.backgroundImage = 'url("' + imgURI + '")';
return false;
}var SamplePage;
function Sample (imgURI) {
if (! SamplePage || SamplePage.closed) {
open ('' /*, ....*/);
}
SamplePage.location.href = 'sample.html?' + imgURI;
return false;
}onload = function () {
document.body.style.backgroundImage = 'url("' + location.search.substring (1) + '")';
};