码迷,mamicode.com
首页 > 其他好文 > 详细

使用BootStrap模态框瞬间消失,且点击没有事件的Button按钮会刷新页面

时间:2018-04-29 19:21:30      阅读:1333      评论:0      收藏:0      [点我收藏+]

标签:for   查询   name   tst   let   boot   hicon   orm   AC   

布局时吧Button按钮放在了form表单中,导致进页面时,不做任何操作,首先点击三个Button按钮,会刷新页面,新增按钮本来有的 模态框 也不会弹出来会弹出并瞬间消失,以为是js冲突的原因,删除了BootStrap的js文件,还是同样的问题。

            <div class="col-md-8">
                <form class="form-inline">
                  <div class="form-group">
                    <label for="exampleInputName2">姓名&nbsp;&nbsp;&nbsp;&nbsp;</label>
                    <input type="text" class="form-control" id="exampleInputName2" placeholder="Jane Doe">
                  </div>
                  &nbsp;&nbsp;&nbsp;&nbsp;
                  <div class="form-group">
                    <label for="exampleInputEmail2">邮箱&nbsp;&nbsp;&nbsp;&nbsp;</label>
                    <input type="email" class="form-control" id="exampleInputEmail2" placeholder="jane.doe@example.com">
                  </div>
                  
                  <button class="btn btn-info"><span class="glyphicon glyphicon-search"></span>&nbsp;查询</button>
                  <button class="btn btn-primary" id="emp_add_modal_btn"><span class="glyphicon glyphicon-plus"></span>&nbsp;新增</button>
                  <button class="btn btn-danger" id="emp_delete_btn"><span class="glyphicon glyphicon-trash"></span>&nbsp;删除</button>
                </form>
            </div>

 

当把三个Button按钮移出form表单,就没有出现上面的问题了

<div class="row">
            <div class="col-md-8">
                <form class="form-inline">
                  <div class="form-group">
                    <label for="exampleInputName2">姓名&nbsp;&nbsp;&nbsp;&nbsp;</label>
                    <input type="text" class="form-control" id="exampleInputName2" placeholder="Jane Doe">
                  </div>
                  &nbsp;&nbsp;&nbsp;&nbsp;
                  <div class="form-group">
                    <label for="exampleInputEmail2">邮箱&nbsp;&nbsp;&nbsp;&nbsp;</label>
                    <input type="email" class="form-control" id="exampleInputEmail2" placeholder="jane.doe@example.com">
                  </div>
                </form>
            </div>
            <div class="col-md-4">
                <button class="btn btn-info"><span class="glyphicon glyphicon-search"></span>&nbsp;查询</button>
                <button class="btn btn-primary" id="emp_add_modal_btn"><span class="glyphicon glyphicon-plus"></span>&nbsp;新增</button>
                <button class="btn btn-danger" id="emp_delete_btn"><span class="glyphicon glyphicon-trash"></span>&nbsp;删除</button>
            </div>
        </div>

 

次篇只为记录自己开发路上的问题,望大神们多多指教。

使用BootStrap模态框瞬间消失,且点击没有事件的Button按钮会刷新页面

标签:for   查询   name   tst   let   boot   hicon   orm   AC   

原文地址:https://www.cnblogs.com/LionsEyes/p/8971574.html

(0)
(2)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!