我试图在当前悬停在 ul 上显示一个输入字段。这种代码类型的作品:
$('ul').hover(function(){
$(this).append('<div style="display: block;"><input type="text"> <button>Knapp></button></div>');
},
function () {
$(this).find("input:last").fadeOut('fast');
$(this).find("button:last").fadeOut('fast');
}
);
但它也为所有父母显示了一个输入字段:/
我试图用 find 从父母那里删除 div
$(this).parents().find("input:last").fadeOut('fast');
但当然,该代码也可以找到当前悬停的 ul 中的那个...