Hallo liebe Leute,
ich habe folgendes Problem und zwar findet in diesem Beispiel ein Bildtausch statt
der ganz gut funktioniert dennoch möchte ich mit PHP dass ausgewählte Bild per Post weiterverarbeiten wie mache ich dass
habe schon Input Hidden versucht leider vergebens
Ich hoffe es kann mir jemand weiter helfen
Liebe Grüße
Sascha
Hier der SourceCode
ich habe folgendes Problem und zwar findet in diesem Beispiel ein Bildtausch statt
der ganz gut funktioniert dennoch möchte ich mit PHP dass ausgewählte Bild per Post weiterverarbeiten wie mache ich dass
habe schon Input Hidden versucht leider vergebens
Ich hoffe es kann mir jemand weiter helfen
Liebe Grüße
Sascha
Hier der SourceCode
PHP:
<script>
var image_swap = (document.getElementById) ? true : false;
window.onload = window_load;
function window_load()
{
if ( image_swap )
{
document.getElementById('icon1').onclick = swapimage;
document.getElementById('icon2').onclick = swapimage;
document.getElementById('icon3').onclick = swapimage;
document.getElementById('icon4').onclick = swapimage;
document.getElementById('icon5').onclick = swapimage;
document.getElementById('icon6').onclick = swapimage;
document.getElementById('icon7').onclick = swapimage;
document.getElementById('icon8').onclick = swapimage;
}
else
{
document.images['icon1'].onclick = swapimage;
document.images['icon2'].onclick = swapimage;
document.images['icon3'].onclick = swapimage;
document.images['icon4'].onclick = swapimage;
document.images['icon5'].onclick = swapimage;
document.images['icon6'].onclick = swapimage;
document.images['icon7'].onclick = swapimage;
document.images['icon8'].onclick = swapimage;
}
}
function swapimage()
{
var imgMain = document.getElementById('mainimage');
var divParent;
// Erstellt ein neues Image Element
var imgNew = document.createElement('img');
imgNew.src = this.src;
imgNew.width = this.width;
imgNew.height = this.height;
// Erhält eine ID
imgNew.id = 'mainimage';
// Hier findet der Bildtausch Statt
divParent = imgMain.parentNode;
divParent.replaceChild(imgNew, imgMain);
}
</script>
<div id="main">
<img id="mainimage" src="00000004.jpg" width="214px" height="120px">
</div>
<div style="margin-top: 10px"></div>
<div id="icons">
<img id="icon1" name="thumb1" src="00000001.jpg" width="214px" height="120px">
<img id="icon2" name="thumb2" src="00000002.jpg" width="214px" height="120px">
<img id="icon3" name="thumb3" src="00000003.jpg" width="214px" height="120px">
<img id="icon4" name="thumb4" src="00000004.jpg" width="214px" height="120px">
<img id="icon5" name="thumb5" src="00000005.jpg" width="214px" height="120px">
<img id="icon6" name="thumb6" src="00000006.jpg" width="214px" height="120px">
<img id="icon7" name="thumb7" src="00000007.jpg" width="214px" height="120px">
<img id="icon8" name="thumb8" src="00000008.jpg" width="214px" height="120px">
</div>