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

怎么提取图片的width和height 求大神帮忙

2012-09-10 
如何提取图片的width和height求大神帮忙怎么提取出图片的width 和height值菜鸟一枚求指导[解决办法] funct

如何提取图片的width和height 求大神帮忙
怎么提取出图片的width 和height值 菜鸟一枚 求指导


[解决办法]
function getW()
  
{
  
var theImg = document.getElementById('Blue hills');
  
alert(theImg.style.width);
  
}
  
function getH()
  
{
  
var theImg = document.getElementById('Blue hills');
  
alert(theImg.style.height);
  
}

热点排行