例一:
<script type="text/javascript">
var str="Hello world!" document.write(str.substring(3))
str.substring(3)
</script>
输出:
lo world!
例二:
var str="Hello world!" document.write(str.substring(3,7))
str.substring(3,7)
lo w