篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在JavaScript.html中的il metodo push()相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<title>il metodo push() in JavaScript</title>
<script type="text/javascript">
var playlist = ["Resistance", "Supremacy", "Plug in baby", "Butterflies & Hurricanes", "Madness"];
var nuovoAlbum = playlist.push("Dead Inside", "Psycho", "Mercy");
for (i in playlist) {
document.write("<p>" + playlist[i] + "</p>");
}
document.write("<p>La variabile nuovo album è di tipo " + typeof nuovoAlbum + " e indica il numero totale degli elementi che formano l'array dopo l'esecuzione della funzione, cioè " + nuovoAlbum + "</p>");
</script>
</head>
<body>
</body>
</html>
以上是关于html 在JavaScript.html中的il metodo push()的主要内容,如果未能解决你的问题,请参考以下文章