HTML DOM lowsrc 属性
JavaScript基础 2022-06-08 15:57:38小码哥的IT人生shichen
HTML DOM lowsrc 属性
定义和用法
lowsrc 属性可设置或返回图像的低分辨率版本的 URL。
语法
imageObject.lowsrc=URL
实例
下面的例子可创建一个指向图像的低分辨率版本的链接:
<html>
<body>
<img id="compman" src="compman.gif"
lowsrc="compman_lowres.gif" alt="Computerman" />
<br />
<script type="text/javascript">
var x=document.getElementById("compman");
document.write('<a href="' + x.lowsrc
+ '">Low resolution</a>');
</script>
</body>
</html>
TIY
完整实例【创建一个指向图像的低分辨率版本的链接】:
<!DOCTYPE html>
<html>
<body>
<script>
function changeImage() {
document.getElementById('myimage').src = "/i/tulip_flaming_club.jpg";
}
</script>
<img id="myimage" onclick="changeImage()" src="/i/tulip_flaming_club_s.jpg" />
<p>单击图像以显示高分辨率版本。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html