作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用这个简单的 jquery 脚本更改列表项内 anchor 内的图像(li a img),但仅在鼠标悬停时更改图像,但如果将鼠标悬停在整个列表项中,我需要更改图像里。
$(".overview li a img").hover(
function() { this.src = this.src.replace("_off", "_on"); },
function() { this.src = this.src.replace("_on", "_off"); }
);
最佳答案
更改选择器以定位 li
,然后在处理程序中找到 img
子项并修改其源:
$(".overview li").hover(
function() {
$(this).find("img")[0].src = $(this).find("img")[0].src.replace("_off", "_on");
}, function() {
$(this).find("img")[0].src = $(this).find("img")[0].src.replace("_on", "_off");
});
});
如果您愿意,您可以将该行为压缩到 .hover
的单个函数参数中(尽管可读性稍差):
$(".overview li").hover(function () {
var img = $(this).find("img")[0];
img.src = (img.src.indexOf("_off") > -1) ?
img.src.replace("_off", "_on") : img.src.replace("_on", "_off");
});
关于jquery - 当使用 jQuery 悬停整个 li 时,如何更改 li a img 内的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8822136/
我是一名优秀的程序员,十分优秀!