我需要在聚焦输入时为div设置动画。我尝试了这个但是没有用。
$("input").focus(function() {
$("div").animate({
marginLeft: "0"
}, 500);
});
初始位置是保证金左:-500px。 jQuery已正确安装。当我尝试做同样但使用div而不是输入它工作。
$(".a_div").click(function() {
$("div").animate({
marginLeft: "0"
}, 500);
});
但我改变了输入,不再有效。