js怎么把字符串型(yyyy年mm月dd日)转化为日期型?var str = '2013年11月18'x0dx0astr = str.replace([^d]g,'')x0dx0avar date = new Date(str)x0dx02023-02-28JavaScript100