jQuery 高度() 宽度()
我的页面上有一个图像:
<img id="foobar" src="emptySpace.gif" />
该图像在 .css 文件中的 absolute
位置为 left: 0
和 top: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定代码正在运行 - 该函数确实在鼠标悬停时被调用吗?
您还可以尝试使用 css() 方法:
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: