No dejes de compartir nuestro sitio y códigos con otro, danos de tu ayuda para aumentar esta comunidad.
Ejemplo 1: selector de consultas
var el =document.querySelector(".myclass");
Ejemplo 2: jquery de objeto a queryselector
$("#foo")[0];// Equivalent to document.getElementById( "foo" ) or document.querySelector('#foo')$("#foo").get(0);// Identical to above, only slower.
Ejemplo 3: selector de consultas javascript
//Pretend there is a with class "example"
const myParagraph =document.querySelector('.example');//You can do many this with is
myParagraph.textContent='This is my new text';
Ejemplo 4: queryselector para jquery
var x =$(".yourclass")[0];console.log('jq'+ x);var y =document.querySelector(".yourclass");console.log('js'+ y);
Ejemplo 5: js queryselector
const content =document.querySelector('.content');const towns =['Helsinki','Espoo','Vantaa'];
towns.forEach(city=>
content.innerHTML+=`<p>$cityp>`;);
Ejemplo 6: función queryselector en javascript
/*The querySelector() method returns the first element that matches a specified
CSS selector(s) in the document. Note: The querySelector() method only returns
the first element that matches the specified selectors. To return all the
matches, use the querySelectorAll() method instead.*/// for example //for classdocument.querySelector(".ClassName")// for id document.querySelector("#ID")// etc.
Valoraciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)