document.write(mystr.substring(5));
document.write(mystr.substring(3,8));
我确认了"Hello World!".substring(5)的长度,确实包括了空格,可能是浏览器优化了,没有在开头输出空格,网上也没有找到答案。