x
 
<!DOCTYPE html>
<html>
<body>
<img id="image" src="/i/eg_smile.gif">
<script>
document.getElementById("image").src = "/i/porsche.jpg";
</script>
<p>原始图像是 eg_smile.gif,但脚本将其更改为 porsche.jpg</p>
</body>
</html>