我正在使用jquery,我想在这里做的是能够设置将根据正在徘徊的链接显示的图像。
<script type='text/javascript'>
$(function(){
$('img').hide();
$('a').mouseenter(function(){
var currentimg= $(this).html();
alert(currentimg);
$("img[src=currentimg.jpg]").show(); //I want to use currentimg variable here for the name of the jpg file
});
$('a').mouseleave(function(){
$('img').hide();
});
});
</script>
答案 0 :(得分:6)
您可以连接字符串以供使用,例如:
$("img[src='" + currentimg +"']").show();
请注意,.mouseenter(handler).mouseleave(handler)
还有一个.hover()
快捷方式,如下所示:
$(function(){
$('img').hide();
$('a').hover(function(){
var currentimg = $(this).html();
$("img[src='" + currentimg +"']").show();
}, function(){
$('img').hide();
});
});