3

我想在鼠标悬停/悬停的同时添加"-h.png"到所有 img src 的末尾并返回到mouseout< div id="swap" >< img src="images/logo.png" />".png"

这就是我所拥有的,但它不起作用:

<div id="header-wrap">
    <div id="swap">
        <img src="images/4.png"/>
        <img src="images/3.png"/>
        <img src="images/2.png"/>
        <img src="images/1.png"/>
    </div>
    <header id="header">
        <div id="site-logo"><a href="#"><img src="images/logo.png" /></a></div>
    </header>
</div><!-- /#header-wrap --> 

$(document).ready(function() {     
    $('#site-logo').hover(function(){     
        $('#swap img').replace('.png','-h.png');    
    },     
    function(){    
        $('#swap img').replace('-h.png','.png');     
    });
});

刚刚更新到下面...图像现在正在交换,但所有 4 个图像都交换为 /4-h.png 而不是 4-h.png、3-h.png、2-h.png 和 1-h.png

$(document).ready(function() {
    var newSrc = "";
    $('#site-logo').hover(function(){
        newSrc = $('#swap img').attr('src').replace('.png','-h.png');   
        $('#swap img').attr('src', newSrc);
    },     
    function(){
        newSrc = $('#swap img').attr('src').replace('-h.png','.png');     
        $('#swap img').attr('src', newSrc);
    });
}); 
4

4 回答 4

1

试试这个 :

    /* so it's not working
    $(document).ready(function() {     
        $('#site-logo').hover(function(){     
            $('#swap img').attr('src').replace('.png','-h.png');    
        },     
        function(){    
            $('#swap img').attr('src').replace('-h.png','.png');     
        });
    });
    */

好的,所以我发现 .replace 方法是纯 javascript 试试这个:

$(document).ready(function() {
    var newSrc = "";
    $('#site-logo').hover(function(){
        $('#swap img').each(function() {
           newSrc = $(this).attr('src').replace('.png','-h.png');   
           $(this).attr('src', newSrc);
        });
    },     
    function(){
        $('#swap img').each(function() {
           newSrc = $(this).attr('src').replace('-h.png','.png');     
           $(this).attr('src', newSrc);
        });
    });
}); 
于 2013-01-11T06:19:47.373 回答
1

您可以尝试使用.slice()这种方式,您可以实现您的目标:

$('#site-logo').hover(function () {
   var atr = $('#swap img').attr('src').slice(0, -4);
   var newAtr = atr+'-h.png'
   $('#swap img').attr('src', newAtr);
},function () {
   var atr = $('#swap img').attr('src').slice(0, -6);
   var newAtr = atr+'.png'
   $('#swap img').attr('src', newAtr);
});

签出小提琴:http: //jsfiddle.net/6vqJV/

于 2013-01-11T06:39:15.477 回答
0

试试这个代码

$(document).ready(function() {     
    $('#site-logo').hover(function(){     
        $('#swap img').attr('src','-h.png');    
    },     
    function(){    
        $('#swap img').attr('src','.png');     
    });
});

或者

$(document).ready(function() {     
        $('#site-logo').hover(function(){     
            $('#swap img').each(function(){
$(this).attr('src','-h.png');
             });    
        },     
        function(){    
            $('#swap img').each(function(){
$(this).attr('src','.png');
});
        });
    });
于 2013-01-11T06:28:09.710 回答
0
$("#site-logo").hover(function () {

  $("#swap img").each(function () {
    var test = $(this).attr('src');
    $("#helper").append("<span>" + test.replace('.png', '-h.png') + "</span><br />");
  });

},

function () {
  $("#swap img").each(function () {
    var test = $(this).attr('src');
    $("#helper2").append("<span>" + test.replace('-h.png', '.png') + "</span><br />");
  });

});

测试链接

于 2013-01-11T06:43:33.120 回答