自动在HTML'p'标签中显示图像尺寸(高度和宽度) - JavaScript

时间:2013-01-03 11:24:30

标签: javascript jquery html css image

我是javaScript的新手,我遇到了这个混合代码段的问题,我从几个网站上找到了。

<script type='text/javascript'>

var img = new Image();
img.onload = function() {
$("ph&W").text(this.width + 'x' + this.height);
}
img.src = ("#hi");

</script>

请您更正此代码段,我相信它会帮助其他人来:) 感谢。

1 个答案:

答案 0 :(得分:2)

使用Javascript:

var img = new Image();
img.onload = function() {
  $("#phW").html(this.width + 'x' + this.height);
}
img.src = ("http://www.google.com/images/logo.png");

HTML:

<p id="phW"></p>​

演示:http://jsfiddle.net/LBkXA/