Bootstrap modal box nesting, tabindex attribute, method of removing shadow

一个新手
Release: 2017-10-18 09:39:19
Original
2928 people have browsed it

Modal box nesting

During development, it is necessary to trigger the first modal box through a click event, and then call up the third modal box through the event after triggering. Two modal boxes, and trigger the third modal box through events; that is, nested modal boxes.

Modal box nesting requires a modal box to wrap the nested modal box involved, so that the modal box will not be messed up when clicked.

HTML code is as follows:

 
Copy after login

tabindex

The explanation of tabindex attribute w3c in the modal box is: The tabindex attribute specifies the tab order of an element (when the tab key is used for navigation). Almost all browsers have the tabindex attribute except Safari.

In the nested modal box, when the attribute exists, no matter what the value is, the return key (Esc) on the keyboard will work; when it does not exist, the return key (Esc) will not work.

Remove the shadow that comes with the modal box

When the modal box is triggered, a shadow layer overlay will be generated the entire page.

#The shadow layer is composed of a class named.modal-backdropControl display.

.modal-backdropThe style in bootsrap source code is as follows:


.modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; }
Copy after login

When you need to remove the shadow layer, you can set css for it Style


1 .modal-backdrop { 2 filter: alpha(opacity=0)!important; 3 opacity: 0!important; 4 }
Copy after login

or control through js


1 $(".modal-backdrop").remove();
Copy after login

The above is the detailed content of Bootstrap modal box nesting, tabindex attribute, method of removing shadow. 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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!