9

我有一个打算用来登录的 Bootstrap 下拉菜单。它看起来很好,但是当我选择用户名 nput 时它消失了,因为焦点已经转到输入。我将如何着手添加对输入的支持,或者是否有可行的方法?

我目前的代码是:

    <li id="fat-menu" class="dropdown">
         <a href="#" id="drop3" role="button" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Login <b class="caret"></b></a>
         <ul class="dropdown-menu" role="menu" aria-labelledby="drop3">
            <li role="presentation"><input name="username" type="text" placeholder="Username" /></li>
            <li role="presentation"><input name="password" type="password" placeholder="Password" /></li>
            <li role="presentation" class="divider"></li>
            <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Login</a></li>
          </ul>
     </li>

我对 jsfiddle 的尝试。我根本无法让下拉菜单工作:http: //jsfiddle.net/KF8dv/

4

1 回答 1

16

请看这个:- http://jsfiddle.net/b8769/

单击输入文本框时,您需要防止下拉事件。您可以使用 javascript 来实现这一点。停止传播

$('.dropdown-menu input').click(function(e) {
        e.stopPropagation(); //This will prevent the event from bubbling up and close the dropdown when you type/click on text boxes.
    });
于 2013-04-17T03:15:42.497 回答