我想知道是否可以將多個函數綁定到一個實時事件。jQuery中的多個函數.live
$('.block a.submit').live("click",
function(){
$(this).text('Save').parent().each(function(){
$(".value", this).hide();
$(".edit", this).show();
$(this).find('.edit :first').focus(); //focuses on first form element - less clicks
$('thead').show();
});
},
function(){
$(this).text('Edit').parent().each(function(){
$(".edit", this).hide();
$(".value", this).show();
$('thead').hide();
});
}
);
如果現場活動不是'點擊'而是'懸停'這將是有效的 – Neal 2011-04-07 15:57:40
@尼爾,不,它不會。 '.live()'方法接受一個綁定到事件的方法。對於'hover'事件,它只會綁定提供給'mouseenter'和'mouseleave'的單一方法。 – 2011-04-07 19:24:04