我试图调整页面上的所有图像。谷歌搜索1天后,我结束了以下代码:
<script type="text/javascript">
<!--
window.onresize = function(){
var images = document.images;
images.style.width = "100%";
};
-->
</script>
请有人告诉我,为什么这不起作用? :/
Greets SGp>
答案 0 :(得分:0)
两点为什么你不使用css,我不知道为什么你需要使用javascript。
img{width:100%;}
在你的例子中,你的代码被注释掉了,而且图像创建了一个数组,你需要循环遍历seeZoltan Toth的回答