Sono stato versando oltre il mio codice più e più volte e non riesco proprio a capire perché non funziona correttamente ...Javascript proprietà immagine
Qualcuno può illuminarmi? Qual è il problema qui? Io proprio non lo vedo.
Il codice dovrebbe consentire all'utente di inserire vari valori in caselle di testo per modificare alcune delle caratteristiche dell'immagine come dimensione del bordo, colore, larghezza, altezza, testo alt dell'immagine e titolo dell'immagine.
Questo è il mio codice:
<html>
<head>
<title>Image Properties</title>
<script type="text.javascript">
function changeImage() {
//applies a new border size
document.getElementById('img').border = document.getElementById('bs').value;
//applies a new border color
document.getElementById('img').style.borderColor = document.getElementById('bc').value;
//applies a new width
document.getElementById('img').width = document.getElementById('bw').value;
//applies a new height
document.getElementById('img').height = document.getElementById('bh').value;
//applies a new alt tag
document.getElementById('img').alt = document.getElementById('ba').value;
//applies a new title
document.getElementById('img').title = document.getElementById('bt').value;
}
</script>
</head>
<body>
<h2>Change Image Properties</h2>
<img src="KotakuLogo.jpg" id="img" />
<p>
Border Size:<input type="text" id="bs"
onfocus="this.style.background='#c3c3c3'"
onblur="this.style.background='#FFFFFF'"/><br />
New Border Color:<input type="text" id="bc"
onfocus="this.style.background='#c3c3c3'"
onblur="this.style.background='#FFFFFF'"/><br />
New Border Width:<input type="text" id="bw"
onfocus="this.style.background='#c3c3c3'"
onblur="this.style.background='#FFFFFF'"/><br />
New Border Height:<input type="text" id="bh"
onfocus="this.style.background='#c3c3c3'"
onblur="this.style.background='#FFFFFF'"/><br />
New Border Alt Tag:<input type="text" id="ba"
onfocus="this.style.background='#c3c3c3'"
onblur="this.style.background='#FFFFFF'"/><br />
New Border Title:<input type="text" id="bt"
onfocus="this.style.background='#c3c3c3'"
onblur="this.style.background='#FFFFFF'"/><br />
<input type="button" value="Submit Image Changes" onclick="changeImage()" />
</body>
</html>
ah ah ah .. è possibile aggiungere questo in un solo commento. – Mimouni
@ Ilyas Minmouni, ma la sua reputazione è sulla linea! : P –
punti gratuiti! : D –