function getCaption(obj,state) { var index=obj.lastIndexOf("\-"); if(state==0){ obj=obj.substring(0,index); }else { obj=obj.substring(index+1,obj.leng ...
function getCaption(obj,state) { var index=obj.lastIndexOf("\-"); if(state==0){ obj=obj.substring(0,index); }else { obj=obj.substring(index+1,obj.length); } return obj; } var data = 'aaa-bbb' //截取符號前面部分 getCaption(data,0) //輸出aaa //截取符號後面部分 getCaption(data,1) //輸出bbb
原文鏈接:https://blog.csdn.net/caiyongshengCSDN/article/details/88420416