JS字符串截取(獲取指定字符后面的所有字符內容)
function getCaption(obj){
var index=obj.lastIndexOf("\-");
obj=obj.substring(index+1,obj.length);
// console.log(obj);
return obj;
}
var str=" 執法辦案流程-立案審批";
getCaption(str);