大佬求解!
<!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!"
var sencond = mystr.indexof("o");
document.write("第一次位置:"+sencond+"<br />");
document.write("第二次位置:"+mystr.indexof("o",sencond));
</script>
</head>
<body>
</body>
</html>
<!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!"
var sencond = mystr.indexof("o");
document.write("第一次位置:"+sencond+"<br />");
document.write("第二次位置:"+mystr.indexof("o",sencond));
</script>
</head>
<body>
</body>
</html>