使用javascript打开BootStrap模式

时间:2017-12-15 11:45:38

标签: javascript html bootstrap-modal bootstrap-4

我有这个模态,我想让它在页面完成加载事件时自动出现(弹出)。

<div id="myModal" class="modal fade in" tabindex="-1" data-show>
    <div class="modal-header" style="background: #5cb85c;">
        <button type="button" class="close" data-dismiss="modal">×</button>
        <h3 id="myModalLabel" style="color: #fff;">HEADER TEXT</h3>
    </div>
    <div class="modal-body">
        <p style="font-size: medium;">SOME TEXT HERE</p>
    </div>
    <div style="text-align:right; padding-right:15px;">
        <button id="buttonEvent" class="btn btn-primary" style="background-
        color: #ec9c51; border-color: #ec9c51;" target="_blank">BUTTON TEXT
        </button>
    </div>
</div>

但我有一个问题:我不能使用jQuery,我需要关闭按钮才能正常工作。

0 个答案:

没有答案