使用javascript获取图像宽度有问题吗?

发布于 2024-10-01 23:40:58 字数 702 浏览 3 评论 0原文

这是我从网上获得的用于获取图像宽度的代码。 效果很好。

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓬勃野心 2024-10-08 23:40:58

那是不可能的。此时宽度未知。这首先就是 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.

森罗 2024-10-08 23:40:58

您可以使用 imgTesting.width 来获取图像宽度。

例如:

var imgTesting = new Image();

imgTesting.src => “${str_applicationPath}/common/images/reports/”+report+“.png”

//第二个警报//

警报(imgTesting.width);

下面给出的代码不是必需的

function CreateDelegate(contextObject, delegateMethod)
{   
        return function()
            {
                return delegateMethod.apply(contextObject, arguments);
            }
}
function imgTesting_onload()
{
    image_width=this.width;
    alert(image_width);//First Alert
}
imgTesting.onload =CreateDelegate(imgTesting, imgTesting_onload);

you can use imgTesting.width to get image width.

For example:

var imgTesting = new Image();

imgTesting.src => "${str_applicationPath}/common/images/reports/"+report+".png"

//Second Alert//

alert(imgTesting.width);

Below given code is not required

function CreateDelegate(contextObject, delegateMethod)
{   
        return function()
            {
                return delegateMethod.apply(contextObject, arguments);
            }
}
function imgTesting_onload()
{
    image_width=this.width;
    alert(image_width);//First Alert
}
imgTesting.onload =CreateDelegate(imgTesting, imgTesting_onload);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文