പ്രധാന ഉള്ളടക്കത്തിലേക്ക് പോകുക ഡോക്സ് നാവിഗേഷനിലേക്ക് പോകുക
Check
in English

അലേർട്ടുകൾ

ലഭ്യമായതും വഴക്കമുള്ളതുമായ ഒരുപിടി അലേർട്ട് സന്ദേശങ്ങൾക്കൊപ്പം സാധാരണ ഉപയോക്തൃ പ്രവർത്തനങ്ങൾക്കായി സന്ദർഭോചിതമായ ഫീഡ്‌ബാക്ക് സന്ദേശങ്ങൾ നൽകുക.

ഉദാഹരണങ്ങൾ

വാചകത്തിന്റെ ഏത് ദൈർഘ്യത്തിനും അലേർട്ടുകൾ ലഭ്യമാണ്, കൂടാതെ ഒരു ഓപ്‌ഷണൽ ക്ലോസ് ബട്ടണും ലഭ്യമാണ്. ശരിയായ സ്റ്റൈലിംഗിനായി, ആവശ്യമുള്ള എട്ട് സന്ദർഭോചിത ക്ലാസുകളിൽ ഒന്ന് ഉപയോഗിക്കുക (ഉദാ, .alert-success). ഇൻലൈൻ ഡിസ്മിസലിനായി, ജാവാസ്ക്രിപ്റ്റ് പ്ലഗിൻ അലേർട്ടുകൾ ഉപയോഗിക്കുക .

html
<div class="alert alert-primary" role="alert">
  A simple primary alert—check it out!
</div>
<div class="alert alert-secondary" role="alert">
  A simple secondary alert—check it out!
</div>
<div class="alert alert-success" role="alert">
  A simple success alert—check it out!
</div>
<div class="alert alert-danger" role="alert">
  A simple danger alert—check it out!
</div>
<div class="alert alert-warning" role="alert">
  A simple warning alert—check it out!
</div>
<div class="alert alert-info" role="alert">
  A simple info alert—check it out!
</div>
<div class="alert alert-light" role="alert">
  A simple light alert—check it out!
</div>
<div class="alert alert-dark" role="alert">
  A simple dark alert—check it out!
</div>
സഹായ സാങ്കേതികവിദ്യകളുടെ അർത്ഥം അറിയിക്കുന്നു

അർത്ഥം ചേർക്കാൻ വർണ്ണം ഉപയോഗിക്കുന്നത് ഒരു വിഷ്വൽ സൂചന നൽകുന്നു, അത് സ്ക്രീൻ റീഡറുകൾ പോലുള്ള സഹായ സാങ്കേതികവിദ്യകളുടെ ഉപയോക്താക്കൾക്ക് കൈമാറില്ല. വർണ്ണത്താൽ സൂചിപ്പിക്കുന്ന വിവരങ്ങൾ ഉള്ളടക്കത്തിൽ നിന്ന് തന്നെ വ്യക്തമാണെന്ന് ഉറപ്പാക്കുക (ഉദാ: ദൃശ്യമായ ടെക്‌സ്‌റ്റ്), അല്ലെങ്കിൽ .visually-hiddenക്ലാസിനൊപ്പം മറച്ചിരിക്കുന്ന അധിക വാചകം പോലെയുള്ള ഇതര മാർഗങ്ങളിലൂടെ ഉൾപ്പെടുത്തിയിരിക്കുന്നു.

തത്സമയ ഉദാഹരണം

ഒരു അലേർട്ട് കാണിക്കാൻ താഴെയുള്ള ബട്ടണിൽ ക്ലിക്ക് ചെയ്യുക (ആരംഭിക്കാൻ ഇൻലൈൻ ശൈലികൾ ഉപയോഗിച്ച് മറച്ചിരിക്കുന്നു), തുടർന്ന് ബിൽറ്റ്-ഇൻ ക്ലോസ് ബട്ടൺ ഉപയോഗിച്ച് അത് ഡിസ്മിസ് ചെയ്യുക (നശിപ്പിക്കുക).

html
<div id="liveAlertPlaceholder"></div>
<button type="button" class="btn btn-primary" id="liveAlertBtn">Show live alert</button>

ഞങ്ങളുടെ തത്സമയ അലേർട്ട് ഡെമോ പ്രവർത്തനക്ഷമമാക്കാൻ ഞങ്ങൾ ഇനിപ്പറയുന്ന JavaScript ഉപയോഗിക്കുന്നു:

const alertPlaceholder = document.getElementById('liveAlertPlaceholder')

const alert = (message, type) => {
  const wrapper = document.createElement('div')
  wrapper.innerHTML = [
    `<div class="alert alert-${type} alert-dismissible" role="alert">`,
    `   <div>${message}</div>`,
    '   <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>',
    '</div>'
  ].join('')

  alertPlaceholder.append(wrapper)
}

const alertTrigger = document.getElementById('liveAlertBtn')
if (alertTrigger) {
  alertTrigger.addEventListener('click', () => {
    alert('Nice, you triggered this alert message!', 'success')
  })
}

.alert-linkഏത് അലേർട്ടിലും പൊരുത്തപ്പെടുന്ന വർണ്ണ ലിങ്കുകൾ വേഗത്തിൽ നൽകാൻ യൂട്ടിലിറ്റി ക്ലാസ് ഉപയോഗിക്കുക .

html
<div class="alert alert-primary" role="alert">
  A simple primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-secondary" role="alert">
  A simple secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-success" role="alert">
  A simple success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-danger" role="alert">
  A simple danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-warning" role="alert">
  A simple warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-info" role="alert">
  A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-light" role="alert">
  A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-dark" role="alert">
  A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>

അധിക ഉള്ളടക്കം

അലേർട്ടുകളിൽ തലക്കെട്ടുകൾ, ഖണ്ഡികകൾ, വിഭജനങ്ങൾ എന്നിവ പോലുള്ള അധിക HTML ഘടകങ്ങളും അടങ്ങിയിരിക്കാം.

html
<div class="alert alert-success" role="alert">
  <h4 class="alert-heading">Well done!</h4>
  <p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
  <hr>
  <p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>

ഐക്കണുകൾ

അതുപോലെ , ഐക്കണുകൾ ഉപയോഗിച്ച് അലേർട്ടുകൾ സൃഷ്ടിക്കാൻ നിങ്ങൾക്ക് ഫ്ലെക്സ്ബോക്സ് യൂട്ടിലിറ്റികളും ബൂട്ട്സ്ട്രാപ്പ് ഐക്കണുകളും ഉപയോഗിക്കാം. നിങ്ങളുടെ ഐക്കണുകളും ഉള്ളടക്കവും അനുസരിച്ച്, നിങ്ങൾക്ക് കൂടുതൽ യൂട്ടിലിറ്റികളോ ഇഷ്ടാനുസൃത ശൈലികളോ ചേർക്കേണ്ടി വന്നേക്കാം.

html
<div class="alert alert-primary d-flex align-items-center" role="alert">
  <svg xmlns="http://www.w3.org/2000/svg" class="bi bi-exclamation-triangle-fill flex-shrink-0 me-2" viewBox="0 0 16 16" role="img" aria-label="Warning:">
    <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
  </svg>
  <div>
    An example alert with an icon
  </div>
</div>

നിങ്ങളുടെ അലേർട്ടുകൾക്ക് ഒന്നിലധികം ഐക്കണുകൾ ആവശ്യമുണ്ടോ? കൂടുതൽ ബൂട്ട്‌സ്‌ട്രാപ്പ് ഐക്കണുകൾ ഉപയോഗിക്കുന്നതും ഒരേ ഐക്കണുകൾ ആവർത്തിച്ച് റഫറൻസ് ചെയ്യുന്നതിനായി ഒരു ലോക്കൽ SVG സ്‌പ്രൈറ്റ് ഉണ്ടാക്കുന്നതും പരിഗണിക്കുക.

html
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
  <symbol id="check-circle-fill" viewBox="0 0 16 16">
    <path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/>
  </symbol>
  <symbol id="info-fill" viewBox="0 0 16 16">
    <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/>
  </symbol>
  <symbol id="exclamation-triangle-fill" viewBox="0 0 16 16">
    <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/>
  </symbol>
</svg>

<div class="alert alert-primary d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Info:"><use xlink:href="#info-fill"/></svg>
  <div>
    An example alert with an icon
  </div>
</div>
<div class="alert alert-success d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Success:"><use xlink:href="#check-circle-fill"/></svg>
  <div>
    An example success alert with an icon
  </div>
</div>
<div class="alert alert-warning d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Warning:"><use xlink:href="#exclamation-triangle-fill"/></svg>
  <div>
    An example warning alert with an icon
  </div>
</div>
<div class="alert alert-danger d-flex align-items-center" role="alert">
  <svg class="bi flex-shrink-0 me-2" role="img" aria-label="Danger:"><use xlink:href="#exclamation-triangle-fill"/></svg>
  <div>
    An example danger alert with an icon
  </div>
</div>

പിരിച്ചുവിടുന്നു

അലേർട്ട് ജാവാസ്ക്രിപ്റ്റ് പ്ലഗിൻ ഉപയോഗിച്ച്, ഏത് ഇൻലൈനിലും അലേർട്ട് ഡിസ്മിസ് ചെയ്യാൻ സാധിക്കും. എങ്ങനെയെന്നത് ഇതാ:

  • നിങ്ങൾ അലേർട്ട് പ്ലഗിനോ കംപൈൽ ചെയ്‌ത ബൂട്ട്‌സ്‌ട്രാപ്പ് ജാവാസ്ക്രിപ്റ്റോ ലോഡ് ചെയ്‌തിട്ടുണ്ടെന്ന് ഉറപ്പാക്കുക.
  • ഒരു ക്ലോസ് ബട്ടണും ക്ലാസും ചേർക്കുക .alert-dismissible, അത് അലേർട്ടിന്റെ വലതുവശത്ത് അധിക പാഡിംഗ് ചേർക്കുകയും ക്ലോസ് ബട്ടൺ സ്ഥാപിക്കുകയും ചെയ്യുന്നു.
  • ക്ലോസ് ബട്ടണിൽ, data-bs-dismiss="alert"ആട്രിബ്യൂട്ട് ചേർക്കുക, അത് JavaScript പ്രവർത്തനത്തെ ട്രിഗർ ചെയ്യുന്നു. <button>എല്ലാ ഉപകരണങ്ങളിലുടനീളവും ശരിയായ പെരുമാറ്റത്തിനായി ഈ ഘടകം ഉപയോഗിക്കുന്നുവെന്ന് ഉറപ്പാക്കുക .
  • .fadeഅലേർട്ടുകൾ ഡിസ്മിസ് ചെയ്യുമ്പോൾ അവയെ ആനിമേറ്റ് ചെയ്യാൻ , .showക്ലാസുകളും ചേർക്കുന്നത് ഉറപ്പാക്കുക .

ഒരു തത്സമയ ഡെമോ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഇത് പ്രവർത്തനക്ഷമമായി കാണാൻ കഴിയും:

html
<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
ഒരു അലേർട്ട് നിരസിക്കുമ്പോൾ, പേജ് ഘടനയിൽ നിന്ന് ഘടകം പൂർണ്ണമായും നീക്കം ചെയ്യപ്പെടും. ഒരു കീബോർഡ് ഉപയോക്താവ് ക്ലോസ് ബട്ടൺ ഉപയോഗിച്ച് അലേർട്ട് നിരസിച്ചാൽ, അവരുടെ ഫോക്കസ് പെട്ടെന്ന് നഷ്‌ടപ്പെടുകയും ബ്രൗസറിനെ ആശ്രയിച്ച്, പേജിന്റെ/പ്രമാണത്തിന്റെ ആരംഭത്തിലേക്ക് പുനഃസജ്ജമാക്കുകയും ചെയ്യും. ഇക്കാരണത്താൽ, closed.bs.alertഇവന്റിനായി ശ്രദ്ധിക്കുന്ന അധിക JavaScript ഉൾപ്പെടുത്താൻ ഞങ്ങൾ ശുപാർശ ചെയ്യുന്നു, കൂടാതെ focus()പേജിലെ ഏറ്റവും അനുയോജ്യമായ ലൊക്കേഷനിലേക്ക് പ്രോഗ്രാമാറ്റിക് ആയി സജ്ജീകരിക്കുന്നു. സാധാരണയായി ഫോക്കസ് ലഭിക്കാത്ത ഒരു നോൺ-ഇന്ററാക്ടീവ് ഘടകത്തിലേക്ക് ഫോക്കസ് നീക്കാൻ നിങ്ങൾ പദ്ധതിയിടുകയാണെങ്കിൽ, tabindex="-1"ഘടകത്തിലേക്ക് ചേർക്കുന്നത് ഉറപ്പാക്കുക.

സി.എസ്.എസ്

വേരിയബിളുകൾ

v5.2.0 ൽ ചേർത്തു

ബൂട്ട്‌സ്‌ട്രാപ്പിന്റെ വികസിച്ചുകൊണ്ടിരിക്കുന്ന CSS വേരിയബിൾ സമീപനത്തിന്റെ ഭാഗമായി, .alertമെച്ചപ്പെടുത്തിയ തത്സമയ കസ്റ്റമൈസേഷനായി അലേർട്ടുകൾ ഇപ്പോൾ ലോക്കൽ CSS വേരിയബിളുകൾ ഉപയോഗിക്കുന്നു. CSS വേരിയബിളുകൾക്കുള്ള മൂല്യങ്ങൾ Sass വഴി സജ്ജീകരിച്ചിരിക്കുന്നു, അതിനാൽ Sass ഇഷ്‌ടാനുസൃതമാക്കൽ ഇപ്പോഴും പിന്തുണയ്ക്കുന്നു.

  --#{$prefix}alert-bg: transparent;
  --#{$prefix}alert-padding-x: #{$alert-padding-x};
  --#{$prefix}alert-padding-y: #{$alert-padding-y};
  --#{$prefix}alert-margin-bottom: #{$alert-margin-bottom};
  --#{$prefix}alert-color: inherit;
  --#{$prefix}alert-border-color: transparent;
  --#{$prefix}alert-border: #{$alert-border-width} solid var(--#{$prefix}alert-border-color);
  --#{$prefix}alert-border-radius: #{$alert-border-radius};
  

സാസ് വേരിയബിളുകൾ

$alert-padding-y:               $spacer;
$alert-padding-x:               $spacer;
$alert-margin-bottom:           1rem;
$alert-border-radius:           $border-radius;
$alert-link-font-weight:        $font-weight-bold;
$alert-border-width:            $border-width;
$alert-bg-scale:                -80%;
$alert-border-scale:            -70%;
$alert-color-scale:             40%;
$alert-dismissible-padding-r:   $alert-padding-x * 3; // 3x covers width of x plus default padding on either side

സാസ് മിക്സിൻ

$theme-colorsഞങ്ങളുടെ അലേർട്ടുകൾക്കായി സന്ദർഭോചിതമായ മോഡിഫയർ ക്ലാസുകൾ സൃഷ്‌ടിക്കാൻ ഇതുമായി സംയോജിപ്പിച്ച് ഉപയോഗിക്കുന്നു .

@mixin alert-variant($background, $border, $color) {
  --#{$prefix}alert-color: #{$color};
  --#{$prefix}alert-bg: #{$background};
  --#{$prefix}alert-border-color: #{$border};

  @if $enable-gradients {
    background-image: var(--#{$prefix}gradient);
  }

  .alert-link {
    color: shade-color($color, 20%);
  }
}

സാസ് ലൂപ്പ്

alert-variant()മിക്‌സിൻ ഉപയോഗിച്ച് മോഡിഫയർ ക്ലാസുകൾ സൃഷ്ടിക്കുന്ന ലൂപ്പ് .

// Generate contextual modifier classes for colorizing the alert.

@each $state, $value in $theme-colors {
  $alert-background: shift-color($value, $alert-bg-scale);
  $alert-border: shift-color($value, $alert-border-scale);
  $alert-color: shift-color($value, $alert-color-scale);

  @if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) {
    $alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale));
  }
  .alert-#{$state} {
    @include alert-variant($alert-background, $alert-border, $alert-color);
  }
}

JavaScript പെരുമാറ്റം

ആരംഭിക്കുക

ഘടകങ്ങൾ അലേർട്ടുകളായി ആരംഭിക്കുക

const alertList = document.querySelectorAll('.alert')
const alerts = [...alertList].map(element => new bootstrap.Alert(element))

ഒരു അലേർട്ട് ഡിസ്മിസ് ചെയ്യുന്നതിനുള്ള ഒരേയൊരു ഉദ്ദേശ്യത്തിനായി, JS API വഴി ഘടകം സ്വമേധയാ ആരംഭിക്കേണ്ട ആവശ്യമില്ല. ഉപയോഗിക്കുന്നതിലൂടെ data-bs-dismiss="alert", ഘടകം സ്വയമേവ ആരംഭിക്കുകയും ശരിയായി ഡിസ്മിസ് ചെയ്യുകയും ചെയ്യും.

കൂടുതൽ വിവരങ്ങൾക്ക് ട്രിഗറുകൾ വിഭാഗം കാണുക .

ട്രിഗറുകൾ

താഴെ കാണിച്ചിരിക്കുന്നതുപോലെ അലേർട്ടിനുള്ളിലെdata ഒരു ബട്ടണിലെ ആട്രിബ്യൂട്ട് ഉപയോഗിച്ച് പിരിച്ചുവിടൽ നേടാനാകും :

<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>

അല്ലെങ്കിൽ താഴെ കാണിച്ചിരിക്കുന്നത് പോലെ അലേർട്ടിന് പുറത്തുള്ളdata-bs-target ഒരു ബട്ടണിൽ :

<button type="button" class="btn-close" data-bs-dismiss="alert" data-bs-target="#my-alert" aria-label="Close"></button>

ഒരു അലേർട്ട് അടയ്ക്കുന്നത് DOM-ൽ നിന്ന് നീക്കം ചെയ്യുമെന്നത് ശ്രദ്ധിക്കുക.

രീതികൾ

അലേർട്ട് കൺസ്ട്രക്റ്റർ ഉപയോഗിച്ച് നിങ്ങൾക്ക് ഒരു അലേർട്ട് ഇൻസ്റ്റൻസ് സൃഷ്ടിക്കാൻ കഴിയും, ഉദാഹരണത്തിന്:

const bsAlert = new bootstrap.Alert('#myAlert')

data-bs-dismiss="alert"ആട്രിബ്യൂട്ട് ഉള്ള ഡിസെൻഡന്റ് എലമെന്റുകളിലെ ക്ലിക്ക് ഇവന്റുകൾക്കായി ഇത് അലേർട്ട് കേൾക്കാൻ സഹായിക്കുന്നു . (ഡാറ്റാ-എപിഐയുടെ ഓട്ടോ-ഇനീഷ്യലൈസേഷൻ ഉപയോഗിക്കുമ്പോൾ ആവശ്യമില്ല.)

രീതി വിവരണം
close DOM-ൽ നിന്ന് നീക്കം ചെയ്തുകൊണ്ട് ഒരു അലേർട്ട് അടയ്‌ക്കുന്നു. എലമെന്റിൽ ക്ലാസുകളും ഉണ്ടെങ്കിൽ, .fadeഅത് .showനീക്കം ചെയ്യുന്നതിനുമുമ്പ് അലേർട്ട് മങ്ങിപ്പോകും.
dispose ഒരു മൂലകത്തിന്റെ മുന്നറിയിപ്പ് നശിപ്പിക്കുന്നു. (DOM ഘടകത്തിൽ സംഭരിച്ച ഡാറ്റ നീക്കംചെയ്യുന്നു)
getInstance ഒരു DOM ഘടകവുമായി ബന്ധപ്പെട്ട അലേർട്ട് ഇൻസ്‌റ്റൻസ് ലഭിക്കാൻ നിങ്ങളെ അനുവദിക്കുന്ന സ്റ്റാറ്റിക് രീതി. ഉദാഹരണത്തിന്: bootstrap.Alert.getInstance(alert).
getOrCreateInstance ഒരു DOM ഘടകവുമായി ബന്ധപ്പെട്ട ഒരു അലേർട്ട് ഇൻസ്‌റ്റൻസ് നൽകുന്ന സ്റ്റാറ്റിക് രീതി അല്ലെങ്കിൽ അത് ആരംഭിച്ചിട്ടില്ലെങ്കിൽ പുതിയൊരെണ്ണം സൃഷ്‌ടിക്കുക. നിങ്ങൾക്ക് ഇത് ഇതുപോലെ ഉപയോഗിക്കാം: bootstrap.Alert.getOrCreateInstance(element).

അടിസ്ഥാന ഉപയോഗം:

const alert = bootstrap.Alert.getOrCreateInstance('#myAlert')
alert.close()

ഇവന്റുകൾ

ബൂട്ട്‌സ്‌ട്രാപ്പിന്റെ അലേർട്ട് പ്ലഗിൻ അലേർട്ട് ഫംഗ്‌ഷണലിറ്റിയിലേക്ക് ഹുക്ക് ചെയ്യുന്നതിനായി കുറച്ച് ഇവന്റുകൾ തുറന്നുകാട്ടുന്നു.

സംഭവം വിവരണം
close.bs.alert closeഇൻസ്‌റ്റൻസ് മെത്തേഡ് വിളിക്കുമ്പോൾ ഉടനടി ഫയർ ചെയ്യുന്നു.
closed.bs.alert അലേർട്ട് അടച്ച് CSS സംക്രമണങ്ങൾ പൂർത്തിയാകുമ്പോൾ വെടിവച്ചു.
const myAlert = document.getElementById('myAlert')
myAlert.addEventListener('closed.bs.alert', event => {
  // do something, for instance, explicitly move focus to the most appropriate element,
  // so it doesn't get lost/reset to the start of the page
  // document.getElementById('...').focus()
})