var msg={} msg.message={} var content ="打开笔记本" var type ="" var item = ""; if(content.indexOf("打开")>-1){ type="open"; item= content.substr(content.indexOf("打开")+2) } if(content.indexOf("关闭")>-1){ type="close"; item= content.substr(content.indexOf("关闭")+2) } msg.type=type; msg.item=item; //截取"提醒我"后面的 console.log(msg)