gpt4 book ai didi

javascript - 使用 encodeURIComponent 编码括号下划线倾斜星

转载 作者:行者123 更新时间:2023-11-29 17:06:26 24 4
gpt4 key购买 nike

encodeURIComponent 转义除以下字符之外的所有字符:- _。 ! ~ * ' ( )

但是是否可以扩展对上述特殊字符进行编码的功能。

我知道我可以做这样的事情:

encodeURIComponent(str).replace(/\(/g, "%28").replace(/\)/g, "%29");

但我想要这样的功能,而不需要在 encodeURIComponent 上使用额外的功能

encodeURIComponent(str);

最佳答案

  1. 您应该创建自己的函数。
  2. 您真的应该创建自己的函数。
  3. 如果您真的知道自己在做什么,请转到第 1 步。

别说我没警告过你;这里有龙:

(function() {
var _fn = encodeURIComponent;

window.encodeURIComponent = function(str) {
return _fn(str).replace(/\(/g, "%28").replace(/\)/g, "%29");
};
}());

关于javascript - 使用 encodeURIComponent 编码括号下划线倾斜星,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24427186/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com