0

我在下拉导航栏项目中创建了登录表单。即使使用响应式用户界面,它也很酷,但存在一个问题。当我将桌面浏览器调整为手机大小时,我仍然可以打开菜单、关注用户名、密码输入并按提交。但是在手机上,我可以扩展登录位置,但是当我触摸输入或按钮时 - 子菜单会隐藏。你有什么想法我该如何解决?

工作代码:http: //jsfiddle.net/D2RLR/4324/

 <li class="dropdown">
                    <a class="dropdown-toggle" href="#" data-toggle="dropdown">Loguj<strong class="caret"></strong></a>

                    <div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px;">
                        <form action="http://localhost/fabrykagier/auth/login" method="post" accept-charset="UTF-8">
                            <input id="user_username" style="margin-bottom: 15px;" type="text" name="identity" size="30" placeholder="e-mail">
                            <input id="user_password" style="margin-bottom: 15px;" type="password" name="password" placeholder="hasło" size="30">
                            <input id="user_remember_me" style="float: left; margin-right: 10px;" type="checkbox" name="remember" value="1">
                            <label class="string optional" for="user_remember_me"> Pamiętaj mnie</label>

                            <input class="btn btn-primary" style="clear: left; width: 100%; height: 32px; font-size: 13px;" type="submit" name="commit" value="Zaloguj">
                        </form>
                    </div>
                </li>
4

1 回答 1

1

这可能是您需要的:

$(function(){
  // Fix input element click problem
  $('.dropdown input, .dropdown label').click(function(e) {
    e.stopPropagation();
  });
});

来源:http ://mifsud.me/adding-dropdown-login-form-b​​ootstraps-navbar/

于 2013-08-31T19:53:11.140 回答