//特殊字符转义
noteVal = noteVal.replace(/%/g, "%25");
noteVal = noteVal.replace(/\&/g, "%26");
noteVal = noteVal.replace(/\+/g, "%2B");
noteVal = noteVal.replace(/\?/g, "%3f");

 

相关文章:

  • 2021-07-12
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2021-05-24
  • 2021-05-28
猜你喜欢
  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
  • 2021-05-16
  • 2022-01-21
相关资源
相似解决方案