आप इस संदर्भ को देख सकते हैं लेकिन यदि यह लिंक हटा दिया गया है, तो इस विवरण को पढ़ें:
जावास्क्रिप्ट के एक लाइन के साथ आईडी myModal के साथ एक मोडल कॉल करें:
$('#myModal').modal(options)
विकल्प
विकल्प डेटा विशेषताओं या जावास्क्रिप्ट के माध्यम से पारित किया जा सकता है। डेटा विशेषताओं के लिए, डेटा का विकल्प नाम संलग्न करें- जैसा कि डेटा-बैकड्रॉप = "" में है ।
|-----------|-------------|--------|---------------------------------------------|
| Name | Type | Default| Description |
|-----------|-------------|--------|---------------------------------------------|
| backdrop | boolean or | true | Includes a modal-backdrop element. |
| | the string | | Alternatively, specify static for a |
| | 'static' | | backdrop which doesn't close the modal |
| | | | on click. |
| | | | |
| keyboard | boolean | true | Closes the modal when escape key is pressed.|
| | | | |
| focus | boolean | true | Puts the focus on the modal when initialized|
| | | | |
| show | boolean | true | Shows the modal when initialized. |
|-----------|-------------|--------|---------------------------------------------|
तरीके
अतुल्यकालिक तरीके और संक्रमण
सभी एपीआई तरीके अतुल्यकालिक हैं और एक संक्रमण शुरू करते हैं। संक्रमण शुरू होते ही वे कॉलगर्ल के पास लौट आते हैं लेकिन समाप्त होने से पहले। इसके अलावा, एक संक्रमण घटक पर एक विधि कॉल को अनदेखा किया जाएगा।
अधिक जानकारी के लिए हमारे जावास्क्रिप्ट प्रलेखन देखें।
.modal (विकल्प)
एक मोडल के रूप में अपनी सामग्री को सक्रिय करता है। एक वैकल्पिक विकल्प वस्तु को स्वीकार करता है।
$('#myModal').modal({
keyboard: false
})
.modal ( 'टॉगल')
मैन्युअल रूप से एक मोडल टॉगल करता है। मोडल से पहले फोन करने वाले को लौटाया गया है जो वास्तव में दिखाया या छिपाया गया है (यानी दिखाए गए .bs.modal या hidden.bs.modal ईवेंट से पहले)।
$('#myModal').modal('toggle')
.modal ( 'शो')
मैन्युअल रूप से एक मोडल खोलता है। मोडल से पहले कॉल करने वाले को लौटाया गया है, वास्तव में दिखाया गया है (यानी दिखाए गए .bs.modal ईवेंट से पहले)।
$('#myModal').modal('show')
.modal ( 'छिपाएं')
मैन्युअल रूप से एक मोडल छुपाता है। मोडल से पहले कॉल करने वाले को लौटाया जाता है, वास्तव में छिपाया गया है (यानी इससे पहले कि हिडन.bs.modal ईवेंट होता है)।
$('#myModal').modal('hide')
.modal ( 'handleUpdate')
यदि मोडल की ऊंचाई खुली रहती है, तो यह मॉडल की स्थिति को मैन्युअल रूप से रीडायरेक्ट करता है (यानी स्क्रॉलबार दिखाई देने पर)।
$('#myModal').modal('handleUpdate')
.modal ( 'निपटाने')
एक तत्व के मोडल को नष्ट कर देता है।
आयोजन
बूटस्ट्रैप का मोडल वर्ग मोडल कार्यक्षमता में हुकिंग के लिए कुछ घटनाओं को उजागर करता है। सभी मोडल घटनाओं को मोडल में ही निकाल दिया जाता है (यानी ** पर)। टाइप करें विवरण
|----------------|--------------------------------------------------------------|
| Event Type | Description |
|----------------|--------------------------------------------------------------|
| show.bs.modal | This event fires immediately when the **show** instance |
| | method is called. If caused by a click, the clicked element |
| | is available as the **relatedTarget** property of the event. |
| | |
| shown.bs.modal | This event is fired when the modal has been made visible to |
| | the user (will wait for CSS transitions to complete). If |
| | caused by a click, the clicked element is available as the |
| | **relatedTarget** property of the event. |
| | |
| hide.bs.modal | This event is fired immediately when the **hide** instance |
| | method has been called. |
| | |
| hidden.bs.modal| This event is fired when the modal has finished being hidden |
| | from the user (will wait for CSS transitions to complete). |
|----------------|--------------------------------------------------------------|
$('#myModal').on('hidden.bs.modal', function (e) {
// do something...
})
$("#yourModal").modal()
या$('.modal').modal()
?