使用javascript获取图像宽度有问题吗?
这是我从网上获得的用于获取图像宽度的代码。 效果很好。
<script type="text/javascript">
function CreateDelegate(contextObject, delegateMethod)
{
return function()
{
return delegateMethod.apply(contextObject, arguments);
}
}
function imgTesting_onload()
{
image_width=this.width;
alert(image_width);//First Alert
}
</script>
var imgTesting = new Image();
imgTesting.onload = CreateDelegate(imgTesting, imgTesting_onload);
imgTesting.src = "${str_applicationPath}/common/images/reports/"+report+".png"
//Second Alert//
但我需要访问 //Second Alert// 处的 image_width 变量 上面的代码。我没有得到宽度值。有什么要做的吗 在那里获得价值?
请帮我......... 提前致谢
This is the code i got from net to get the image width.
It works great.
<script type="text/javascript">
function CreateDelegate(contextObject, delegateMethod)
{
return function()
{
return delegateMethod.apply(contextObject, arguments);
}
}
function imgTesting_onload()
{
image_width=this.width;
alert(image_width);//First Alert
}
</script>
var imgTesting = new Image();
imgTesting.onload = CreateDelegate(imgTesting, imgTesting_onload);
imgTesting.src = "${str_applicationPath}/common/images/reports/"+report+".png"
//Second Alert//
But my need is to access the image_width variable at the //Second Alert// place in
the above code.I am not getting the width value there.Is anything to be done to
get value there?
Please Help Me.........
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那是不可能的。此时宽度未知。这首先就是 onload 事件的全部意义。您必须在 imgTesting_onload 中的“第二个警报”处执行所需的代码。
That's not possible. At that point the width is not known. That is the whole point of the onload event in the first place. You have to execute the code you want at "Second alert" in imgTesting_onload instead.
您可以使用 imgTesting.width 来获取图像宽度。
例如:
下面给出的代码不是必需的
you can use imgTesting.width to get image width.
For example:
Below given code is not required