jQuery 高度() 宽度()

发布于 2024-08-28 13:59:12 字数 357 浏览 4 评论 0原文

我的页面上有一个图像:

<img id="foobar" src="emptySpace.gif" />

该图像在 .css 文件中的 absolute 位置为 left: 0top: 0

当我在 JavaScript onmouseover 中尝试此操作时,高度和宽度不会改变。我缺少什么?

var image = jQuery("#foobar");
image.height(500).width(500);

什么给?

I have an image on the page:

<img id="foobar" src="emptySpace.gif" />

The image has an absolute position of left: 0 and top: 0 in a .css file.

When I try this in JavaScript onmouseover, the height and width don't change. What am I missing?

var image = jQuery("#foobar");
image.height(500).width(500);

What gives?

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

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

发布评论

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

评论(1

独自←快乐 2024-09-04 13:59:12

您确定代码正在运行 - 该函数确实在鼠标悬停时被调用吗?

您还可以尝试使用 css() 方法:

image.css({height:'500px',width:'500px'});

Are you sure that code is being run - that the function is indeed being called on mouseover?

You could also try using the css() method:

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