博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
substring()方法
阅读量:5309 次
发布时间:2019-06-14

本文共 429 字,大约阅读时间需要 1 分钟。

var str = "0123456789";    document.write(str.substring(0) + "
"); document.write(str.substring(5) + "
"); document.write(str.substring(12) + "
"); document.write(str.substring(-5) + "
"); document.write(str.substring(0, 5) + "
");//截取的字符个数为5-0=5个 document.write(str.substring(2, 8) + "
"); /* 上述程序运行结果为: 0123456789 56789 0123456789 01234 234567*/

 

转载于:https://www.cnblogs.com/feile/p/5396595.html

你可能感兴趣的文章