這篇文章主要介紹了簡(jiǎn)介JavaScript中substring()方法的使用,是JS入門學(xué)習(xí)中的基礎(chǔ)知識(shí),需要的朋友可以參考下
該方法返回一個(gè)String對(duì)象的一個(gè)子集。
語(yǔ)法
- string.substring(indexA, [indexB])
下面是參數(shù)的詳細(xì)信息:
indexA : 介于0和1小于字符串的長(zhǎng)度的整數(shù)。
indexB : (可選)介于0和字符串的長(zhǎng)度的整數(shù)。
返回值:
substring方法返回基于給定參數(shù)的新的子字符串。
例子:
- <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>
這將產(chǎn)生以下結(jié)果:
- (1,2): p
- (0,10): Apples are
- (5): s are round, and apples are juicy.
新聞熱點(diǎn)
疑難解答
圖片精選