$(document).ready(function () {
$(".btn-slide").focus(function () {
$("#moresearch").show("fast");
$(".btn-slide").blur(function () {
$("#moresearch").hide("fast");
});
});
});
在这个示例.btn-slide
中是我的文本框。当它聚焦时,moresearch
会显示 div。当 div 模糊时隐藏。
问题是,当我单击moresearch
div 时,div 会关闭,但只有在单击外部时才会关闭。