日期:2013-08-09  浏览次数:20944 次

1)<html>
<head>

<script language="JavaScript">
function setHeight()
{
var x=document.images
x[0].height="250"
}
</script>

</head>
<body>

<img src="http://edu.cnzz.cn/images/compman.gif" width="107" height="98" />

<form>
<input type="button" value="Change height">
</form>

</body>
</html>

2)<html>
<head>

<script language="JavaScript">
function setSrc()
{
var x=document.images
x[0].src="http://edu.cnzz.cn/images/hackanm.gif"
}
</script>

</head>
<body>

<img src="http://edu.cnzz.cn/images/compman.gif" width="107" height="98" />

<form>
<input type="button" value="Change image">
</form>

</body>
</html>
3)<html>
<head>

<script language="JavaScript">
function setWidth()
{
var x=document.images
x[0].width="300"
}
</script>

</head>
<body>

<img src="http://edu.cnzz.cn/images/compman.gif" width="107" height="98" />

<form>
<input type="button" value="Change width">
</form>

</body>
</html>

留意,图形文件换成本人的文件,试试,不错吧