gpt4 book ai didi

javascript - 使用encodeURIComponent()的字符串原型(prototype)自定义方法

转载 作者:行者123 更新时间:2023-12-03 12:22:01 25 4
gpt4 key购买 nike

我正在为 Javascript 字符串编写此方法 encodedURIComponentValue():

这个想法是允许我调用:"some string".encodedURIComponentValue()

代码如下:

if (typeof String.prototype.encodedURIComponentValue != 'function') {
String.prototype.encodedURIComponentValue = function (str) {
if (str && str.length > 0)
return encodeURIComponent(str);
else
return "";
};
}

但在某些情况下它不起作用:

var encodedVal = $("body").find("option:selected").first().text().encodedURIComponentValue() // text() = "Option1" 

console.log(encodedVal); // I only see "" (empty)

有什么想法吗?

最佳答案

您可能会找到following answer很有帮助,因为它解释了原型(prototype)、构造函数和 this 的值。

在这种情况下,我不建议像您一样这样做。您不拥有 String 并且修改它会破坏封装。唯一“有效”的情况是您需要实现现有方法来支持旧版浏览器(例如 Object.create)。更多信息here .

你可以做你正在做的事情:

encodeURIComponent(
$("body").find("option:selected").first().text()
);

所以除了喜欢其他语法之外,确实没有任何理由。

关于javascript - 使用encodeURIComponent()的字符串原型(prototype)自定义方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24401955/

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