In Chrome 50, you'll be able to check the support of options for some HTML attributes that are backed by DOMTokenList
instances in JavaScript. এই মুহূর্তে, এই স্থানগুলি হল:
- iframe স্যান্ডবক্স বিকল্প
- লিঙ্ক সম্পর্ক (জাভাস্ক্রিপ্টে rel অ্যাট্রিবিউট বা relLink)
আসুন একটি দ্রুত উদাহরণ দেখান:
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!
}
সমর্থিত বিকল্পগুলির তালিকা বৃদ্ধি এবং পরিবর্তিত হওয়ার সাথে সাথে আপনি আপনার ওয়েব অ্যাপ্লিকেশনগুলির জন্য সঠিক ক্রিয়া সম্পাদন করতে বৈশিষ্ট্য সনাক্তকরণ ব্যবহার করতে পারেন।