1)当#pin_point
悬停时,我将两个绝对定位的图像设置为fadeToggle,以便它随着淡入淡出效果而变化:
$("#pin_point").hover(function hoverhandler() {
$("#pin_point img").fadeToggle('medium');
});
2)#pin_point
点击时,我将pin_point设置img
为交换为“ex.png”:
$("#pin_point").click(function() {
$("#pin_point img").attr('src','images/ex.png');
});
3)当#pin_point
被点击时,我还取消了#1(上图)中的悬停功能。
问题:如果我想在再次点击#pin_point时绑定函数,我该怎么办?下面是我的代码,我很难弄清楚。谁能帮忙?
$("#pin_point").click(function() {
$('#pin_point').unbind('hover', hoverhandler);
$("#pin_point img").attr('src','images/ex.png');
$('#pin_point').bind('hover', hoverhandler);
});