定义和用法
substring() 方法用于提取字符串中介于两个指定下标之间的字符。
js
<html>
<body>
<script type="text/javascript">
var str="http://192.168.60.95:8075/webroot/decision/view/report?viewlet=test1.cpt"
document.write(str.substring(7,18))
</script>
</body>
</html>