Javascript原型扩展方法

发布于 2024-08-04 07:08:54 字数 350 浏览 2 评论 0原文

我有一个原型模型,我需要在原型中包含以下扩展方法:

String.prototype.startsWith = function(str){
    return (this.indexOf(str) === 0);
}

示例: [JS]

sample = function() {
    this.i;
}

sample.prototype = {
    get_data: function() {
        return this.i;
    }
}

在原型模型中,如何使用扩展方法或任何其他方式在 JS 原型模型中创建扩展方法。

I have a prototype model where I need to include the following extension methods into the prototype:

String.prototype.startsWith = function(str){
    return (this.indexOf(str) === 0);
}

Example:
[JS]

sample = function() {
    this.i;
}

sample.prototype = {
    get_data: function() {
        return this.i;
    }
}

In the prototype model, how can I use the extension methods or any other way to create extension methods in JS prototype model.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小矜持 2024-08-11 07:08:54

在 string: 上调用新方法

String.prototype.startsWith = function(str){
    return (this.indexOf(str) === 0);
}

应该像下面这样简单:

alert("foobar".startsWith("foo")); //alerts true

对于第二个示例,我假设您需要一个设置成员变量“i”的构造函数:

function sample(i) { 
    this.i = i;     
}

sample.prototype.get_data = function() { return this.i; }

您可以按如下方式使用它:

var s = new sample(42);
alert(s.get_data()); //alerts 42

Calling the new method on string:

String.prototype.startsWith = function(str){
    return (this.indexOf(str) === 0);
}

should be as simple as:

alert("foobar".startsWith("foo")); //alerts true

For your second example, I assume you want a constructor that sets the member variable "i":

function sample(i) { 
    this.i = i;     
}

sample.prototype.get_data = function() { return this.i; }

You can use this as follows:

var s = new sample(42);
alert(s.get_data()); //alerts 42
秋千易 2024-08-11 07:08:54

不过,构造函数应该以大写字母开头。

function Sample(i) { 
    this.i = i;     
}

var s = new Sample(42);

Constructor functions should begin with a capital letter though.

function Sample(i) { 
    this.i = i;     
}

var s = new Sample(42);
一萌ing 2024-08-11 07:08:54

不确定这有多正确,但请尝试此代码。它在 IE 中对我有用。

在 JavaScript 文件中添加:

String.prototype.includes = function (str) {
    var returnValue = false;

    if(this.indexOf(str) != -1){

        returnValue = true;
    }

    return returnValue;
}

Not sure how correct this is, but please try this code. It worked in IE for me.

Add in JavaScript file:

String.prototype.includes = function (str) {
    var returnValue = false;

    if(this.indexOf(str) != -1){

        returnValue = true;
    }

    return returnValue;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文