La propiedad jQuery.support en jQuery contiene una colección de propiedades que se utilizan para representar las diferentes funciones o errores del navegador.
Sintaxis:
jQuery.support.propvalue
Parámetros: esta propiedad contiene un solo parámetro propvalue que es obligatorio. Se utiliza para especificar la función a probar. Las pruebas incluidas son:
- ajax
- modelo de caja
- cambiarBurbujas
- comprobar Clonar
- verificar
- corazones
- cssflotante
- hrefNormalizado
- htmlSerializar
- espacio en blanco principal
- noCloneChecked
- noCloneEvent
- opacidad
- optDisabled
- optSeleccionado
- scriptEval()
- estilo
- enviarBurbujas
- cuerpo
Ejemplo 1: este ejemplo usa la propiedad jQuery.support para enviar un mensaje de texto al navegador para crear un objeto XMLHttpRequest.
<!DOCTYPE html> <html> <head> <title> jQuery jQuery.support property </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> </head> <body> <center> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2> jQuery jQuery.support property</h2> <h3 style="color:lightgreen;" ></h3> <!-- Script to use jQuery.support property --> <script> $(document).ready(function() { $("h3").html("GeeksForGeeks is best for" + " Computer Knowledge : " + jQuery.support.ajax); }); </script> </center> </body> </html>
Producción:
Ejemplo 2: este ejemplo ilustra la propiedad jQuery.support con el valor del parámetro cors.
<!DOCTYPE html> <html> <head> <title> jQuery jQuery.support property </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> </head> <body> <center> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2>jQuery jQuery.support property</h2> <h3 style="color:lightgreen;" ></h3> <!-- Script to use jQuery.support property --> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function() { $.support.cors = false; $("h3").html(" Previous Example statement is not" + " correct : " + jQuery.support.cors); }); </script> </center> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA