ข้ามไปที่เนื้อหาหลัก ข้ามไปที่การนำทางเอกสาร
Check
in English

การแจ้งเตือน

จัดเตรียมข้อความตอบกลับตามบริบทสำหรับการดำเนินการทั่วไปของผู้ใช้ด้วยข้อความเตือนที่ยืดหยุ่นและพร้อมใช้งานจำนวนหนึ่ง

ตัวอย่าง

การแจ้งเตือนสามารถใช้ได้กับข้อความที่มีความยาวเท่าใดก็ได้ รวมถึงปุ่มปิดที่เป็นตัวเลือก สำหรับการจัดรูปแบบที่เหมาะสม ให้ใช้หนึ่งในแปด คลาสตามบริบท ที่จำเป็น (เช่น.alert-success) สำหรับการเลิกจ้างแบบอินไลน์ ให้ใช้ปลั๊กอิน JavaScript การแจ้ง เตือน

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>

ไอคอน

ในทำนองเดียวกัน คุณสามารถใช้ยูทิลิตี้ flexboxและBootstrap Iconsเพื่อสร้างการแจ้งเตือนด้วยไอคอน ขึ้นอยู่กับไอคอนและเนื้อหาของคุณ คุณอาจต้องการเพิ่มยูทิลิตี้เพิ่มเติมหรือสไตล์ที่กำหนดเอง

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>

ต้องการมากกว่าหนึ่งไอคอนสำหรับการแจ้งเตือนของคุณ? พิจารณาใช้ไอคอน Bootstrap เพิ่มเติมและสร้างสไปรท์ 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>

เลิกจ้าง

การใช้ปลั๊กอิน JavaScript การแจ้งเตือนทำให้สามารถยกเลิกการแจ้งเตือนแบบอินไลน์ได้ นี่คือวิธี:

  • ตรวจสอบให้แน่ใจว่าคุณได้โหลดปลั๊กอินการแจ้งเตือนหรือ Bootstrap JavaScript ที่คอมไพล์แล้ว
  • เพิ่มปุ่มปิดและ.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>
เมื่อปิดการแจ้งเตือน องค์ประกอบจะถูกลบออกจากโครงสร้างหน้าโดยสมบูรณ์ หากผู้ใช้แป้นพิมพ์ปิดการแจ้งเตือนโดยใช้ปุ่มปิด โฟกัสจะหายไปทันที และรีเซ็ตเป็นจุดเริ่มต้นของหน้า/เอกสาร ทั้งนี้ขึ้นอยู่กับเบราว์เซอร์ ด้วยเหตุผลนี้ เราขอแนะนำให้รวม JavaScript เพิ่มเติมที่รับฟัง closed.bs.alertเหตุการณ์และตั้งค่าโดยทางโปรแกรม focus()ไปยังตำแหน่งที่เหมาะสมที่สุดในหน้า หากคุณกำลังวางแผนที่จะย้ายโฟกัสไปยังองค์ประกอบที่ไม่โต้ตอบซึ่งโดยปกติไม่ได้รับการโฟกัส ตรวจสอบให้แน่ใจว่าได้เพิ่ม tabindex="-1"องค์ประกอบนั้นแล้ว

CSS

ตัวแปร

เพิ่มใน v5.2.0

ในฐานะที่เป็นส่วนหนึ่งของแนวทางตัวแปร CSS ที่พัฒนาขึ้นของ Bootstrap ขณะนี้การแจ้งเตือนใช้ตัวแปร CSS ใน.alertเครื่องเพื่อการปรับแต่งตามเวลาจริงที่ได้รับการปรับปรุง ค่าสำหรับตัวแปร 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};
  

ตัวแปร Sass

$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

Sass mixin

ใช้ร่วมกับ$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%);
  }
}

Sass ห่วง

ลูปที่สร้างคลาสโมดิฟาย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);
  }
}

พฤติกรรมจาวาสคริปต์

เริ่มต้น

เริ่มต้นองค์ประกอบเป็น alerts

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"แอตทริบิวต์ (ไม่จำเป็นเมื่อใช้การกำหนดค่าเริ่มต้นอัตโนมัติของ data-api)

วิธี คำอธิบาย
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()

เหตุการณ์

ปลั๊กอินการแจ้งเตือนของ Bootstrap เปิดเผยเหตุการณ์บางอย่างสำหรับการเชื่อมต่อกับฟังก์ชันการแจ้งเตือน

เหตุการณ์ คำอธิบาย
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()
})