码迷,mamicode.com
首页 > Web开发 > 详细

JS字符串截取(获取指定字符后面的所有字符内容)

时间:2017-11-28 11:47:02      阅读:581      评论:0      收藏:0      [点我收藏+]

标签:字符   apt   strong   ring   class   结果   console   内容   tin   

function getCaption(obj){
	var index=obj.lastIndexOf("\-");
	obj=obj.substring(index+1,obj.length);
//	console.log(obj);
	return obj;
}
var str=" 执法办案流程-立案审批";
getCaption(str);

  最后得到的结果是立案审批

JS字符串截取(获取指定字符后面的所有字符内容)

标签:字符   apt   strong   ring   class   结果   console   内容   tin   

原文地址:http://www.cnblogs.com/liumengdie/p/7908393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!