Passaggio Parametri Javascript






<!DOCTYPE html>
<html>
<body>
<script>
function light(sw) {
var pic;
if (sw == 0) {
pic = "pic_bulboff.gif"
} else {
pic = "pic_bulbon.gif"
}
document.getElementById('myImage').src = pic;
}
</script>

<img id="myImage" src="pic_bulboff.gif" width="100" height="180">

<p>
<button type="button" onclick="light(1)">Light On</button>
<button type="button" onclick="light(0)">Light Off</button>
</p>

</body>
</html>


http://www.w3schools.com/html/tryit.asp?filename=tryhtml_script_attribute











( passaggioparametrijavascript.html )- by Paolo Puglisi - Modifica del 17/12/2023