0

我试图调整页面上所有图像的大小。谷歌搜索 1 天后,我以以下代码结束:

<script type="text/javascript">
<!--
window.onresize = function(){
var images = document.images;
images.style.width = "100%";
};


-->
</script>

有人可以告诉我,为什么这行不通?:/

问候SG

4

1 回答 1

0

两点你为什么不使用css,我不确定你为什么需要使用javascript。

img{width:100%;}

第二在您的示例中,您的代码被注释掉了,并且图像创建了一个数组,您需要循环遍历 seeZoltan Toth 答案

于 2012-07-31T09:27:22.433 回答