为了账号安全,请及时绑定邮箱和手机立即绑定

为什么这里“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>


正在回答

5 回答

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

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

0 回复 有任何疑惑可以回复我~
#1

暴躁的代码 提问者

非常感谢!
2016-12-28 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

substring(5)我直接这么打的

0 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信