jQuery - Utilitários
Jquery fornece utilitários de servidor no formato $ (namespace). Esses métodos são úteis para completar as tarefas de programação. Alguns dos métodos utilitários são mostrados abaixo.
$ .trim ()
$ .trim () é usado para Remover espaços em branco à esquerda e à direita
$.trim( " lots of extra whitespace " );
$ .each ()
$ .each () é usado para iterar arrays e objetos
$.each([ "foo", "bar", "baz" ], function( idx, val ) {
console.log( "element " + idx + " is " + val );
});
$.each({ foo: "bar", baz: "bim" }, function( k, v ) {
console.log( k + " : " + v );
});
.each () pode ser chamado em uma seleção para iterar sobre os elementos contidos na seleção. .each (), não $ .each (), deve ser usado para iterar sobre os elementos em uma seleção.
$ .inArray ()
$ .inArray () é usado para Retorna o índice de um valor em uma matriz, ou -1 se o valor não estiver na matriz.
var myArray = [ 1, 2, 3, 5 ];
if ( $.inArray( 4, myArray ) !== -1 ) {
console.log( "found it!" );
}
$ .extend ()
$ .extend () é usado para alterar as propriedades do primeiro objeto usando as propriedades dos objetos subsequentes.
var firstObject = { foo: "bar", a: "b" };
var secondObject = { foo: "baz" };
var newObject = $.extend( firstObject, secondObject );
console.log( firstObject.foo );
console.log( newObject.foo );
$ .proxy ()
$ .proxy () é usado para Retorna uma função que sempre será executada no escopo fornecido - isto é, define o significado disso dentro da função passada para o segundo argumento
var myFunction = function() {
console.log( this );
};
var myObject = {
foo: "bar"
};
myFunction(); // window
var myProxyFunction = $.proxy( myFunction, myObject );
myProxyFunction();
$ .browser
$ .browser é usado para fornecer informações sobre navegadores
jQuery.each( jQuery.browser, function( i, val ) {
$( "<div>" + i + " : <span>" + val + "</span>" )
.appendTo( document.body );
});
$ .contains ()
$ .contains () é usado para retornar true se o elemento DOM fornecido pelo segundo argumento for um descendente do elemento DOM fornecido pelo primeiro argumento, seja ele um filho direto ou aninhado mais profundamente.
$.contains( document.documentElement, document.body );
$.contains( document.body, document.documentElement );
$ .data ()
$ .data () é usado para fornecer as informações sobre os dados
<html lang = "en">
<head>
<title>jQuery.data demo</title>
<script src = "https://code.jquery.com/jquery-1.10.2.js">
</script>
</head>
<body>
<div>
The values stored were <span></span>
and <span></span>
</div>
<script>
var div = $( "div" )[ 0 ];
jQuery.data( div, "test", {
first: 25,
last: "tutorials"
});
$( "span:first" ).text( jQuery.data( div, "test" ).first );
$( "span:last" ).text( jQuery.data( div, "test" ).last );
</script>
</body>
</html>
Uma saída seria a seguinte
The values stored were 25 and tutorials
$ .fn.extend ()
$ .fn.extend () é usado para estender o protótipo jQuery
<html lang = "en">
<head>
<script src = "https://code.jquery.com/jquery-1.10.2.js">
</script>
</head>
<body>
<label><input type = "checkbox" name = "android">
Android</label>
<label><input type = "checkbox" name = "ios"> IOS</label>
<script>
jQuery.fn.extend({
check: function() {
return this.each(function() {
this.checked = true;
});
},
uncheck: function() {
return this.each(function() {
this.checked = false;
});
}
});
// Use the newly created .check() method
$( "input[type = 'checkbox']" ).check();
</script>
</body>
</html>
Ele fornece a saída conforme mostrado abaixo -
$ .isWindow ()
$ .isWindow () é usado para reconhecer a janela
<!doctype html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>jQuery.isWindow demo</title>
<script src = "https://code.jquery.com/jquery-1.10.2.js">
</script>
</head>
<body>
Is 'window' a window? <b></b>
<script>
$( "b" ).append( "" + $.isWindow( window ) );
</script>
</body>
</html>
Ele fornece a saída conforme mostrado abaixo -
$ .now ()
Ele retorna um número que representa a hora atual
(new Date).getTime()
$ .isXMLDoc ()
$ .isXMLDoc () verifica se um arquivo é um xml ou não
jQuery.isXMLDoc( document )
jQuery.isXMLDoc( document.body )
$ .globalEval ()
$ .globalEval () é usado para executar o javascript globalmente
function test() {
jQuery.globalEval( "var newVar = true;" )
}
test();
$ .dequeue ()
$ .dequeue () é usado para executar a próxima função na fila
<!doctype html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>jQuery.dequeue demo</title>
<style>
div {
margin: 3px;
width: 50px;
position: absolute;
height: 50px;
left: 10px;
top: 30px;
background-color: green;
border-radius: 50px;
}
div.red {
background-color: blue;
}
</style>
<script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button>Start</button>
<div></div>
<script>
$( "button" ).click(function() {
$( "div" )
.animate({ left: '+ = 400px' }, 2000 )
.animate({ top: '0px' }, 600 )
.queue(function() {
$( this ).toggleClass( "red" );
$.dequeue( this );
})
.animate({ left:'10px', top:'30px' }, 700 );
});
</script>
</body>
</html>
Ele fornece a saída conforme mostrado abaixo -