ใน Chrome 50 คุณจะตรวจสอบการรองรับตัวเลือกสำหรับแอตทริบิวต์ HTML บางรายการที่อินสแตนซ์ DOMTokenList
ใน JavaScript รองรับได้
ขณะนี้สถานที่เหล่านี้มีดังนี้
- ตัวเลือกแซนด์บ็อกซ์ iframe
- ความสัมพันธ์ของลิงก์ (แอตทริบิวต์ rel หรือ relLink ใน JavaScript)
มาดูตัวอย่างกัน
var iframe = document.getElementById(...);
if (iframe.sandbox.supports('an-upcoming-feature')) {
// support code for mystery future feature
} else {
// fallback code
}
if (iframe.sandbox.supports('allow-scripts')) {
// instruct frame to run JavaScript
// NOTE: this is well-supported, and just an example!
}
เมื่อรายการตัวเลือกที่รองรับมีจำนวนมากขึ้นและเปลี่ยนแปลงไป คุณสามารถใช้การตรวจหาฟีเจอร์เพื่อดำเนินการที่ถูกต้องสำหรับเว็บแอปพลิเคชัน