我有一個原型模型,其中我需要包括以下擴展方法進原型:的Javascript原型擴展方法
String.prototype.startsWith = function(str){
return (this.indexOf(str) === 0);
}
實施例: [JS]
sample = function() {
this.i;
}
sample.prototype = {
get_data: function() {
return this.i;
}
}
在原型模型中,我如何使用擴展方法或任何其他方式在JS原型模型中創建擴展方法。
我需要添加樣品原型內塔startswith methos .. HW做針鋒相對... – Santhosh 2009-09-11 09:16:00
對不起,不知道我知道你想要什麼,然後 – 2009-09-11 09:48:50
沒有詢問你的幫助.. – Santhosh 2009-09-11 10:40:45