<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <script type="text/javascript"> var mystr="Hello World!"; document.write(mystr.substr(6) + "<br />"); document.write( mystr.substr(0,5)); </script> </head> <body> </body> </html>
mark