js获取指定字符后面的字符

function getCaption(obj){

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

posted @ 2019-08-16 18:53  Sea。  阅读(13736)  评论(0编辑  收藏  举报