基本上,我想讓懸停工作,即使在點擊綁定後,但我將.image26和27設置爲默認背景。懸停首先起作用,但點擊後,因爲我將其重置爲默認值,所以不能再次使用。甚至在jquery綁定('click')之後使懸停工作?
對此有更好的方法嗎?如果我沒有將圖像的其餘部分放在默認位置,那麼它們都會被標記爲點擊。
工作樣品: http://jsfiddle.net/louiemiranda/RkM3t/
jQuery代碼:
$(".image22").bind("click", function(event){
$(this).css("background-position", "0 100%");
$('#package22').attr("checked", "checked");
$('.image26').css("background-position", "0 0");
$('.image27').css("background-position", "0 0");
var cashcredit = $('#package22').val();
$('#fyi').html(cashcredit);
});
$(".image22").bind("mouseenter mouseleave", function(event){
$(this).toggleClass("image22-selected");
});
任何幫助理解。謝謝!