JavaScript 参考手册
Image lowsrc 属性
下面的例子可创建一个指向图像的低分辨率版本的链接
源代码:
点击运行 »
<img id="compman" src="/examples/compman.gif" lowsrc="compman_lowres.gif" alt="Computerman" width="107" height="98"> <br> <script> var x = document.getElementById("compman"); document.write('<a href="' + x.lowsrc + '">低分辨率</a>'); </script>
运行结果:
点击运行 »