首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

,使用javascript改变image大小却无效,请各位老师指教

2012-09-14 
求助,使用javascript改变image大小却无效,请各位老师指教如题,代码如下:script typetext/javascriptv

求助,使用javascript改变image大小却无效,请各位老师指教
如题,代码如下:
<script type="text/javascript">
  var img = document.getElementById("Image1");
  function small()
  {
  img.width=img.width*0.5; 
  img.height=img.height*0.5; 
  return false;
  }

</script>

[解决办法]
function small() {
img.style.width = img.width * 0.5+ "px";
img.height = img.height * 0.5 + "px";
return false;
}
function big() {
img.width = img.width * 1.5 + "px";
img.height = img.height * 1.5 + "px";
return false;
}
[解决办法]
img.style.width=img.offsetWidth*0.5 + "px";
img.style.height=img.offsetHeight*0.5 + "px";

请注意 img 的实际输出id 如果涉及后台 为 控件.ClientId

热点排行