代码示例:(标识:hdom_image_lowsrc)
<!DOCTYPE html>
<html>
<body>
<script>
function changeImage() {
  document.getElementById('myimage').src = "/static/demo/images/tulip_flaming_club.jpg";
}
</script>

<img id="myimage" onclick="changeImage()" src="/static/demo/images/tulip_flaming_club_s.jpg" />

<p>单击图像以显示高分辨率版本。</p>

</body>
</html>
运行结果: