JQUERY:简单获取div的偏移量

发布于 2024-09-27 19:08:05 字数 623 浏览 6 评论 0原文

我想获取 div 的偏移量,但是当我尝试访问该 div 时,我说 [Object object]... 或未定义或 0.0;因为我认为我的方法是错误的:-(

这是页面:

http://pastebin.org/208836

我已经尝试过使用此代码:

var p = $(".product_72ivnj");
var offset = p.offset();
var final =( "left: " + offset.left + ", top: " + offset.top );
alert(final);

或者这样:

var p = $("#product_72ivnj");
var offset = p.offset();
var final =( "left: " + offset.left + ", top: " + offset.top );
alert(final);

但是赢了不起作用:-(

有人可以帮助我吗?

提前致谢。

亲切的问候。

卢卡。

i would like get the offsets of a div,but when i try to access to that div says me [Object object]... or undefined or 0.0;because i think that my method is wrong :-(

This is the code of the page:

http://pastebin.org/208836

And i have already tried with this code:

var p = $(".product_72ivnj");
var offset = p.offset();
var final =( "left: " + offset.left + ", top: " + offset.top );
alert(final);

Or this:

var p = $("#product_72ivnj");
var offset = p.offset();
var final =( "left: " + offset.left + ", top: " + offset.top );
alert(final);

But won't work :-(

Anyone can help me please?

Thanks in advance.

Kind regards.

Luca.

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

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

发布评论

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

评论(1

冷情 2024-10-04 19:08:05

您是否尝试过等待页面加载?

$(document).ready(function(){...});

不太确定语法,您应该检查 jQuery 文档。

Have you tried to wait for the page to be loaded ?

$(document).ready(function(){...});

Not so sure about the syntax you should check it on jQuery documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文