JS对象 substring() 方法用于提取字符串中介于两个指定下标之间的字符。
提取字符串substring()
任务
运用substring()方法,完成子字符串的提取:
1.补充右边编辑器第8行,从字符对象mystr中提取World!子字符串。
2. 补充右边编辑器第9行,从字符对象mystr中提取Hello子字符串。
<!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.substring(6) + "<br />"); document.write(mystr.substring(0,4)); </script> </head> <body> </body> </html>