1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-20 04:11:39 +02:00

modal: change data-dismiss so that it can be outside of a modal using bs-target (#33403)

* change data-dismiss, so can be outside modal, using a bs-target

* Update site/content/docs/5.0/components/modal.md

Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com>
This commit is contained in:
GeoSot
2021-07-19 16:56:05 +03:00
committed by GitHub
parent 06a1ca5623
commit dfafb9a60c
3 changed files with 54 additions and 3 deletions

View File

@@ -831,11 +831,29 @@ The modal plugin toggles your hidden content on demand, via data attributes or J
### Via data attributes
#### Toggle
Activate a modal without writing JavaScript. Set `data-bs-toggle="modal"` on a controller element, like a button, along with a `data-bs-target="#foo"` or `href="#foo"` to target a specific modal to toggle.
```html
<button type="button" data-bs-toggle="modal" data-bs-target="#myModal">Launch modal</button>
```
#### Dismiss
Dismissal can be achieved with `data` attributes on a button **within the modal** as demonstrated below:
```html
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
```
or on a button **outside the modal** using the `data-bs-target` as demonstrated below:
```html
<button type="button" class="btn-close" data-bs-dismiss="modal" data-bs-target="#my-modal" aria-label="Close"></button>
```
{{< callout warning >}}
While both ways to dismiss a modal are supported, keep in mind that dismissing from outside a modal does not match [the WAI-ARIA modal dialog design pattern](https://www.w3.org/TR/wai-aria-practices-1.1/#dialog_modal). Do this at your own risk.
{{< /callout >}}
### Via JavaScript