代码是这样的:
$(' html body div.wrapper div.middle div.post_home:first-child a ').hover(
function() {
$(' html body div.wrapper div.middle div.post_home:first-child a > img ').attr("src", "http:/site/test1.png");
},
function() {
$('html body div.wrapper div.middle div.post_home:first-child a > img ').attr("src", "currentSrc");
});
我只需要在更改之前保留图像的 src 值,以便在 mouseleave 上检索图像并显示它。