Image lowsrc 属性
Image 对象
Image 对象
定义和用法
lowsrc 属性可设置或返回图像的低分辨率版本的 URL。
语法
imageObject.lowsrc=URL
浏览器支持
所有主要浏览器都支持 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>
Image 对象