js正则怎样取出姓名: 比如:姓名;刘军 年级;二年级你好,我这里有个方法可以取到:var str = "姓名;刘军 年级;二年级", name = str.split(s|;g)[1]console.log(name) 刘军上面代码成立的前提是,st2023-03-04JavaScript160