bootstrap用jquery控制模态框

2021/9/4 23:06:16

本文主要是介绍bootstrap用jquery控制模态框,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

bootstrap用jquery控制模态框

转载至bootstrap js控制模态框,这样就能根据逻辑条件控制modal框的打开了。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Bootstrap 实例 - 模态框(Modal)插件</title>
    <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<h2>创建模态框(Modal)</h2>
<!-- 按钮触发模态框 -->


    <a href="javascript:void(-1);" onclick="show_modal();">  开始演示模态框</a>
</button>
<!-- 模态框(Modal) -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
                    &times;
                </button>
                <h4 class="modal-title" id="myModalLabel">
                    模态框(Modal)标题
                </h4>
            </div>
            <div class="modal-body">
                <div class="input-group">
                    <div class="form-group">
                        <label>name:</label>
                <input name="name" type="text" value="">
                        </div>
                    </div>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">关闭
                </button>
                <button type="button" class="btn btn-primary" id="id_ad_search">
                    提交更改
                </button>
            </div>
        </div><!-- /.modal-content -->
    </div><!-- /.modal -->
</div>
<script>
    function show_modal() {
         $('#myModal').modal('show');
    }
    $(function () {
        $('#id_ad_search').click(function () {
           var name = $('#id_name').val();
            $.ajax({
                url:'/test',
                data:{name:name},
                complete:function () {
                    $('#myModal').modal('hide');
                }
            })

        });

    });

</script>
</body>

</html>


这篇关于bootstrap用jquery控制模态框的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程