从后往前提取应该怎么做
如果我想用从后往前提取字符的话,这样子为什么不行,我只得到了一个!号
<!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(-1, 6)+ "<br />");document.write(mystr.substr(0, mystr.indexOf("o")+1));</script></head><body></body></html>