例如:把<替换成<>,把>替换成><,不管谁在前都会影响下一次。

let newStr= oldStr.replace(/<|"|=|\/|>/g, str => {
  let return_str = str;
  switch (str) {
    case "<":
      return_str = `<>`;
    case ">":
      return_str = `><`;
      break;
  }
  return return_str;
});