我的导航栏有下拉“fieldsets”用于登录和搜索,如下所示:
<div class="nav-button" id="nav-box">
<a class="inside-link">
<span id="inside-text">Sign in</span>
</a>
<fieldset id="menu-box" class="menu-box">
<form method="post" id="forms" class="forms" action="checklogin.php">
<label for="username">Username or email</label>
<input type="text" id="username" name="username" value="" title="username" tabindex="4">
<label for="password">Password</label>
<input type="password" id="password" name="password" value="" title="password" tabindex="5">
<input type="submit" id="small-btn" value="Sign in" tabindex="6">
<input type="checkbox" id="remember" name="remember_me" value="1" tabindex="7">
<label for="remember">Remember me</label>
<br />
<a href="#"id="resend_password_link">Forgot your password?</a>
<a id='forgot_username_link' title="If you remember your password, try logging in with your email" href="#">Forgot your username?</a>
</form>
</fieldset>
</div>
我有一个小提琴:http://jsfiddle.net/WBrns/5/
虽然“搜索”“用户名”和“密码”等输入框是重点关注的,但我希望关联的下拉列表不会消失,因此用户在输入时不必将鼠标放在下拉列表中。
CSS中的第288行是我们的第一次尝试,显然不起作用。我的网站已经包含了jQuery,所以任何js / jquery解决方案都是可以接受的(因为我认为纯css是不可能的)
谢谢!
答案 0 :(得分:0)
在hover
样式上,确保属性具有!important
命令,然后使用下面的代码,同时记住将id和类替换为您需要的内容:
$("input").focus(function () { that=this;
$(this).parent(".drop").css("display", "block");
$(this).blur(function() {
$(that).parent(".drop").css("display", "none");
});
})
您可以在此处查看示例:http://jsfiddle.net/WBrns/12/
如果用户开始输入,即使他们将鼠标移开,下拉也不会消失。但是,如果他们在下拉列表外单击,它将被隐藏。
答案 1 :(得分:0)
为了改进Shaz的答案,您可以命名模糊事件以防止多个模糊事件附加到同一输入。我还建议使用类名和CSS来显示和隐藏下拉菜单,以便您可以利用CSS过渡。
JS
$('input').focus(function () {
var $this = $(this);
var $drop = $this.parents('.drop');
$drop.addClass('open');
$this.bind('blur.closeDrop', function () {
$drop.removeClass('open');
$this.unbind('blur.closeDrop');
});
});
CSS
.drop {
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease;
}
.drop.open {
opacity: 1;
pointer-events: auto;
}