1、描述
此方法返回String对象的子集。
2、语法
使用substr()的语法如下:
string.substring(indexA, [indexB])
3、参数
- indexA: 小于字符串长度的0到1之间的整数。
- indexB:(可选)0到字符串长度之间的整数。
4、返回值
基于给定参数,子字符串方法返回新子字符串。
5、使用示例
<html>
<head>
<title>JavaScript String substring() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "https://www.cjavapy.com c java python code";
document.write("(1,2): " + str.substring(1,2));
document.write("<br />(0,10): " + str.substring(0, 10));
document.write("<br />(5): " + str.substring(5));
</script>
</body>
</html>
6、输出
(1,2): t (0,10): https://ww (5): ://www.cjavapy.com c java python code