El método support () en HTML DOM se usa para verificar si un token específico es compatible con una lista de tokens DOM.
Sintaxis:
domtokenlist.supports(token)
Valores de parámetro: contiene un token de valor únicoque especifica el nombre del token que se va a comprobar.
Valor devuelto : Devuelve un valor booleano que devuelve verdadero si un token específico pertenece a un DOM TokenList.
Ejemplo: El siguiente código HTML ilustra el uso del método support() en HTML DOM.
HTML
<!DOCTYPE html> <html> <body style="text-align:center"> <h1 style="color: green;"> GeeksforGeeks </h1> <h2>HTML DOM TokenList supports() Method</h2> <iframe id="iframeID" src= "https://ide.geeksforgeeks.org/index.php"> </iframe> <p> Click on the below button if the iframe supports "allow-forms":or not </p> <button onclick="btnclick()"> Click Here! </button> <p id="paraID" style="font-size:25px"></p> <script> function btnclick() { const list = document.getElementById( "iframeID").sandbox; document.getElementById("paraID").innerHTML = list.supports("allow-forms"); } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 49 y superior
- Edge 17 y superior
- Internet Explorer no es compatible
- Firefox 49 y superior
- Safari 10.1 y superior
- Ópera 36 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA