Este método deferred.notify() en JQuery se usa para llamar a las devoluciones de llamada de progreso en un objeto diferido con los parámetros dados.
Sintaxis:
deferred.notify(params)
Parámetros:
- params: Estos son parámetros opcionales que se pasan a las devoluciones de llamada de progreso.
Valor devuelto: este método método devuelve el objeto diferido.
Hay dos ejemplos discutidos a continuación:
- Ejemplo: En este ejemplo, se llama a la notificación() con los argumentos.
<!DOCTYPE HTML>
<
html
>
<
head
>
<
title
>
JQuery | deferred.notify() method
</
title
>
</
script
>
</
head
>
<
body
style
=
"text-align:center;"
>
<
h1
style
=
"color:green;"
>
GeeksForGeeks
</
h1
>
<
p
id
=
"GFG_UP"
>
</
p
>
<
button
onclick
=
"Geeks();"
>
click here
</
button
>
<
p
id
=
"GFG_DOWN"
>
</
p
>
<
script
>
var el_up = document.getElementById("GFG_UP");
el_up.innerHTML = "JQuery | deferred.notify() method";
function Func(val, div){
$(div).append('From function "Func": ' + val);
}
function Geeks() {
var def = $.Deferred();
def.progress(Func);
def.notify(
'notify() is called with arguments. <
br
/>', '#GFG_DOWN');
}
</
script
>
</
body
>
</
html
>
- Producción:
-
Ejemplo: En este ejemplo, se llama a notificar() sin argumentos.
<!DOCTYPE HTML>
<
html
>
<
head
>
<
title
>
JQuery | deferred.notify() method
</
title
>
</
script
>
</
head
>
<
body
style
=
"text-align:center;"
>
<
h1
style
=
"color:green;"
>
GeeksForGeeks
</
h1
>
<
p
id
=
"GFG_UP"
>
</
p
>
<
button
onclick
=
"Geeks();"
>
click here
</
button
>
<
p
id
=
"GFG_DOWN"
>
</
p
>
<
script
>
var el_up = document.getElementById("GFG_UP");
el_up.innerHTML = "JQuery | deferred.notify() method";
function Func(val, div){
$(div).append('From function "Func": ' + val);
}
function Geeks() {
var def = $.Deferred();
def.done(Func);
def.progress(Func);
def.notify();
def.resolve('Deferred is resolved.<
br
/>', '#GFG_DOWN')
}
</
script
>
</
body
>
</
html
>
- Producción:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA