/* * 截取逗号后面所有字符 */ function getCaption(obj){ var index=obj.lastIndexOf("\,"); obj = obj.substring(index+1,obj.length); return obj; } var str="dsafas,立案审批djsld13"; getCaption(str); console.log(getCaption(str));
alert(('dhak^456').split("^")[0])
alert(('dhak^456').split("^")[1])