我是javaScript的新手,我遇到了这个混合代码段的问题,我从几个网站上找到了。
<script type='text/javascript'>
var img = new Image();
img.onload = function() {
$("ph&W").text(this.width + 'x' + this.height);
}
img.src = ("#hi");
</script>
请您更正此代码段,我相信它会帮助其他人来:) 感谢。
答案 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>