扫码一下
查看教程更方便
substring() 方法用于提取字符串中介于两个指定下标之间的字符。
substring() 方法返回的子串包括 开始 处的字符,但不包括 结束 处的字符。
语法如下:
string.substring(indexA, [indexB])
根据给定的参数返回新的子字符串。
所有主流浏览器都支持 substring 方法。
<html>
<head>
<title>JavaScript String substring() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "Apples are round, and apples are juicy.";
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>
输出结果:
(1,2): p
(0,10): Apples are
(5): s are round, and apples are juicy.