마우스가 TD 요소를 엔트로이드로 입력하고 숨길 때 텍스트 입력을 표시해야합니다. 그래서이 입력 (포커스)을 클릭하면 마우스 이벤트가 바인딩 해제됩니다 ........ 입력에서 Enter 키를 누를 때 마우스 포인터에 표준 액션을 바인딩하기 위해 작성해야하는 것은 무엇입니까? & mouseleave? 대신 입력 때마다 다시의jQuery : 바인딩 해제 후 마우스 이벤트를 반환하는 방법?
$(".translation").mouseenter(function(){
$(this).html('<input type="text" class="tr_input" placeholder="Перевести...">');
$(".tr_input").focus(function(){
$(".translation").unbind("mouseenter");
$(".translation").unbind("mouseleave");
});
});
$(".translation").mouseleave(function(){
$(this).html("");
});