Jquery Image Preload 获取图像高度

发布于 2024-11-19 02:41:27 字数 346 浏览 6 评论 0原文

我正在使用此页面的图像预加载插件。 http://www.farinspace.com/jquery-image-preload-plugin/。

我试图用下面的代码获取图像的高度。但是,这会提醒一堆垃圾而不是图像高度。

$.imgpreload('myJpg.jpg',function()
    {
      alert($(this).height);
});

现在想知道是否可以动态获取图像高度?

I am using the image preload plugin from this page. http://www.farinspace.com/jquery-image-preload-plugin/ .

I am trying to get the height of the image with the code below.However this alerts a bunch of garbage instead of the images height.

$.imgpreload('myJpg.jpg',function()
    {
      alert($(this).height);
});

Wondering now if it is possible to dynamically get the images height?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

手心的海 2024-11-26 02:41:27

无需使用图像预加载插件来获取高度

var height = $("img[src='myJpg.jpg']").height();
alert(height);

No need to use the image preload plugin to get the height

var height = $("img[src='myJpg.jpg']").height();
alert(height);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文