问答详情
源自:7-10 提取字符串substring()

为什么这里“hello”可以提取,“world”就不能了。

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>string对象</title>

<script type="text/javascript">

var mystr="Hello World!"

document.write(mystr         + "<br />");

document.write(mystr.substring("H",5)         + "<br />");

document.write(mystr.substring("W")                   );

</script>

</head>

<body>

</body>

</html>


提问者:暴躁的代码 2016-12-28 10:09

个回答

  • 新手3551466
    2016-12-28 10:40:57
    已采纳

    substring(),括号内必须是一个非负整数,写字母是无效的,所以应该写成,document.write(mystr.substring(0,5));

    document.write(mystr.substring(5));

  • qq_灰色头像_17
    2017-08-22 11:24:36

    ....如果第一个位置写的不是非负数字,默认从头开始,不新你可以吧“H”换成“e”,结果是一样的

  • 死了3239144
    2016-12-28 10:26:44

    mystr.indexOf(" ")z这个也可以、mystr.indexOf("W")也可以

  • 死了3239144
    2016-12-28 10:23:17

    substring(5)我直接这么打的

  • 死了3239144
    2016-12-28 10:20:21

    ("W",)  呢个点。。是、不是、 有问题..我也刚看这节