Is the dialog based on bootstrap?

(*-*)浩
Release: 2019-07-11 11:04:13
Original
2387 people have browsed it

Those who have used JQuery UI should know that it has a dialog pop-up box component with rich functions.

Is the dialog based on bootstrap?

Similar to jQuery UI's dialog, Bootstrap also has a built-in pop-up box component. (Recommended learning: Bootstrap video tutorial)

Open the bootstrap document http://v3.bootcss.com/components/ and you can see that its dialog is directly embedded into bootstrap. js and bootstrap.css, that is to say, as long as we introduce the bootstrap file, we can directly use its dialog component. Isn't it very convenient?

In this article, we will introduce the use of bootstrap dialog based on the new editing function. Without further ado, let’s look directly at how to use it.

Display through html code

<!-- Button trigger modal 弹出框的触发器 -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>
 
<!-- Modal 弹出框的结构 -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
Copy after login

This method is simple and intuitive; but it will increase the 'weight' of html and is not flexible enough. It is not recommended for large-scale use Use

to display

through js. The simplest implementation method:

BootstrapDialog.show({
  message: 'Hi Apple!'
});
Copy after login

For more technical articles related to Bootstrap, please visit Bootstrap Learn in the tutorial column!

The above is the detailed content of Is the dialog based on bootstrap?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template