/**
 * @msg: html反转义
 */
export function htmlDecode (text) {
  let tmp = document.createElement('div')
  tmp.innerHTML = text
  const output = tmp.innerText || tmp.textContent
  tmp = null
  return output
}

Logo

前往低代码交流专区

更多推荐