html JavaScript.html中的il metodo slice()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html JavaScript.html中的il metodo slice()相关的知识,希望对你有一定的参考价值。

<html>
<head>
<title>il metodo slice() in JavaScript</title>
<script type="text/javascript">
	var testo = "Quel ramo del lago di Como che volge al tramonto";
	document.write("<p>Il primo carattere della stringa testo è '" + testo.slice(0, 1) + "'</p>");
	document.write("<p>I caratteri dal secondo al sesto della stringa testo sono '" + testo.slice(1, 6) + "'</p>");
	document.write("<p>I caratteri a partire dal decimo della stringa testo sono '" + testo.slice(9) + "'</p>");
	document.write("<p>L'ultimo carattere della stringa testo è '" + testo.slice(-1) + "'</p>");
	document.write("<p>Gli ultimi quattro caratteri della stringa testo sono '" + testo.slice(-4) + "'</p>");
	
	</script>
</head>
<body>
</body>
</html>

以上是关于html JavaScript.html中的il metodo slice()的主要内容,如果未能解决你的问题,请参考以下文章

html JavaScript.html中的il metodo trim()

html 在JavaScript.html中的il metodo unshift()

html 在JavaScript.html中的il metodo shift()

html 在JavaScript.html中的il metodo reverse()

html 在JavaScript.html中的il metodo push()

html 在JavaScript.html中的il metodo pop()