您现在的位置: 万盛学电脑网 >> 程序编程 >> 脚本专题 >> javascript >> 正文

JavaScript中的substr()方法使用详解

作者:佚名    责任编辑:admin    更新时间:2022-06-22

   这篇文章主要介绍了JavaScript中的substr()方法使用详解,是JS入门学习中的基础知识,需要的朋友可以参考下

  这个方法在一个字符串返回字符开始于通过指定的字符数的指定位置。

  语法

  ?

1 string.substr(start[, length]);

  下面是参数的详细信息:

  start : 在位置开始提取字符(一个介于0和整数小于字符串的长度)

  length : 要用来提取的字符数

  注意:如果start 是负数,substr 使用它作为从字符串的末尾字符索引

  返回值:

  substr方法返回基于给定参数的新的子字符串

  例子:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <html> <head> <title>JavaScript String substr() Method</title> </head> <body> <script type="text/javascript">   var str = "Apples are round, and apples are juicy.";   document.write("(1,2): " + str.substr(1,2)); document.write("<br />(-2,2): " + str.substr(-2,2)); document.write("<br />(1): " + str.substr(1)); document.write("<br />(-20, 2): " + str.substr(-20,2)); document.write("<br />(20, 2): " + str.substr(20,2));   </script> </body> </html>

  这将产生以下结果:

  ?

1 2 3 4 5 (1,2): pp (-2,2): Ap (1): pples are round, and apples are juicy. (-20, 2): Ap (20, 2): d