Este método sub() en JQuery se usa para mostrar la string como texto de subíndice. Este método devuelve la string incrustada en la etiqueta, así:
<sub> string </sub>
Sintaxis:
string.sub()
Hay dos ejemplos discutidos a continuación:
- Ejemplo 1:
<!DOCTYPE HTML>
<
html
>
<
head
>
<
title
>
JQuery | sub() method
</
title
>
<
script
src
=
</
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");
var el_down = document.getElementById("GFG_DOWN");
var str = "Hello Geeks!";
el_up.innerHTML = "JQuery | sub() method";
function Geeks() {
el_down.innerHTML = "Result is " + str.sub();
}
</
script
>
</
body
>
</
html
>
- Producción:
-
Ejemplo 2:
<!DOCTYPE HTML>
<
html
>
<
head
>
<
title
>
JQuery | sub() 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");
var el_down = document.getElementById("GFG_DOWN");
var str = "Hello Geeks!";
el_up.innerHTML = "JQuery | sub() method";
function Geeks() {
el_down.innerHTML =
"Some text " + str.sub() + " Some other text";
}
</
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