Latest web development tutorials

HTML DOM atrybut src Obraz

Obraz Object Reference Obiekt Obraz

Definicja i Wykorzystanie

zestawy własności src lub zwraca wartość atrybutu obrazu SRC.

Atrybut src określa URL wykresu.

gramatyka

imageObject.src=URL


Pomoc Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Wszystkie główne przeglądarki obsługują atrybut src


Przykłady

Przykłady

<html>
<head>
<script>
function changeSrc()
{
document.getElementById("myImage").src="hackanm.gif";
}
</script>
</head>
<body>

<img id="myImage" src="compman.gif" width="107" height="98">
<br><br>
<input type="button" onclick="changeSrc()" value="Change image">

</body>
</html>

Spróbuj »


Obraz Object Reference Obiekt Obraz